ако искате клиентът да е купил всичките 3 продукта, можете да използвате функцията за агрегиране count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3