3つの製品すべてを購入した顧客が必要な場合は、集計関数count(distinct product)
を使用できます。
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3
3つの製品すべてを購入した顧客が必要な場合は、集計関数count(distinct product)
を使用できます。
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3