Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9b3d2cb

Browse files
authoredNov 20, 2022
Create Customers Who Never Order.sql
1 parent 1e3a835 commit 9b3d2cb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎easy/Customers Who Never Order.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
--183. Customers Who Never Order--
2+
# Write your MySQL query statement below
3+
select customers.name as 'Customers'
4+
from customers
5+
where customers.id not in
6+
(
7+
select customerid from orders
8+
);

0 commit comments

Comments
 (0)
Please sign in to comment.