om du vill ha kunden som köpte alla 3 produkter kan du använda aggregeringsfunktionen count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3
om du vill ha kunden som köpte alla 3 produkter kan du använda aggregeringsfunktionen count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3