join만 잘해주면 그 이후부턴,, 문제 없는 쉽지만 생각을 잘 해야하는 문제! 먼저 셀프조인으로 user_id 기준으로 결합하되 product_id 이 과정이 나에게 꽤나 어려웠다. 그 이후에는 productInfo 조인을 통해 카테고리 이름을 결합해주면 끝이다. ** count >= 3 이상인 조건도 필수적으로 having 에 넣어준다! ** # Write your MySQL query statement belowselect pp1.product_id as product1_id , pp2.product_id as product2_id , pin_1.category as product1_category , pin_2.category as product2..