29 - 买下所有产品的客户 select c.customer_id from Customer c group by c.customer_id having count(c.product_key)=(select count(distinct product_key) from Product);