Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 65e0f59

Browse files
the1Riddlerezzcode
andauthored
customers-who-never-order
Co-authored-by: the-1Riddle <elv.s.earl@gmail.com>
1 parent 517d3d8 commit 65e0f59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MySQL/customers-who-never-order.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SELECT Name AS Customers
55
FROM Customers
66
WHERE Id NOT IN (SELECT CustomerId FROM Orders)
77

8-
/** solution two */
8+
/** solution two **/
99

1010
SELECT Customers.Name AS Customers
1111
FROM (Customers LEFT JOIN Orders ON Customers.Id = Orders.CustomerId)

0 commit comments

Comments
 (0)