Skip to content

Commit 2028f6a

Browse files
authored
Create 183-customers-who-never-order.sql
1 parent 7e01452 commit 2028f6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

183-customers-who-never-order.sql

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Write your MySQL query statement below
2+
SELECT A.Name AS `Customers` from Customers A
3+
WHERE A.Id NOT IN (SELECT B.CustomerId from Orders B);

0 commit comments

Comments
 (0)