1045-customers-who-bought-all-products
DevGod
Elf Vtuber
SELECT customer_id FROM CustomerGROUP BY customer_idHAVING COUNT(DISTINCT product_key) = (SELECT COUNT(*) from Product)SELECT customer_id FROM CustomerGROUP BY customer_idHAVING COUNT(DISTINCT product_key) = (SELECT COUNT(*) from Product)