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