从未订购的客户
题目
Customers 表:
±—±------+
| Id | Name |
±—±------+
| 1 | Joe |
| 2 | Henry |
| 3 | Sam |
| 4 | Max |
±—±------+
Orders 表:
±—±-----------+
| Id | CustomerId |
±—±-----------+
| 1 | 3 |
| 2 | 1 |
±—±-----------+
某网站包含两个表,Customers
表和 Orders
表。编写一个 SQL 查询,找出所有从不订购任何东西的客户。
解法
首先我们需要有一份曾经订购过的客户名单,就很容易知道谁订购过。
select customerid from orders;
然后我们可以使用not in查询不在此列表中的客户
SQL
select customers.name as 'Customers'
from customers
where customers.id not in
(
select customerid from orders
);
总结
从Customers表中查找name字段,需要有一份曾经订购过的客户名单,以此来知道谁订购过,然后使用not in查询不在此列表中的客户