-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path183. Customers Who Never Order.sql
More file actions
43 lines (34 loc) · 1.06 KB
/
183. Customers Who Never Order.sql
File metadata and controls
43 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
Question 183. Customers Who Never Order.
Link: https://leetcode.com/problems/customers-who-never-order/description/
Table: Customers
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| id | int |
| name | varchar |
+-------------+---------+
id is the primary key (column with unique values) for this table.
Each row of this table indicates the ID and name of a customer.
Table: Orders
+-------------+------+
| Column Name | Type |
+-------------+------+
| id | int |
| customerId | int |
+-------------+------+
id is the primary key (column with unique values) for this table.
customerId is a foreign key (reference columns)
of the ID from the Customers table.
Each row of this table indicates the ID
of an order and the ID of the customer who ordered it.
Write a solution to find all customers who never order anything.
Return the result table in any order.
*/
SELECT Customers.name AS Customers
FROM Customers
LEFT JOIN
Orders
ON
Customers.id = Orders.customerId
WHERE Orders.id IS NULL