leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE |
1045.sql (132B)
0 SELECT customer_id
1 FROM Customer
2 GROUP BY customer_id
3 HAVING COUNT(DISTINCT product_key) = (
4 SELECT COUNT(*)
5 FROM Product
6 )