se vuoi il cliente che ha acquistato tutti e 3 i prodotti puoi utilizzare la funzione di aggregazione count(distinct product)
SELECT Customer
FROM your_table
where product in (1,2,3)
GROUP BY Customer
HAVING count(distinct product) = 3