pokud chcete zákazníka, který zakoupil všechny 3 produkty, můžete použít agregační funkci count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3
pokud chcete zákazníka, který zakoupil všechny 3 produkty, můžete použít agregační funkci count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3