leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE |
0183.sql (113B)
0 SELECT C.Name as Customers
1 FROM Customers C
2 LEFT JOIN Orders O
3 ON C.Id = O.CustomerId
4 WHERE O.CustomerId is NULL