343从不订购的客户

Posted huoyingfans

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了343从不订购的客户相关的知识,希望对你有一定的参考价值。

某网站包含两个表,Customers 表和 Orders 表。编写一个 SQL 查询,找出所有从不订购任何东西的客户。

Customers 表:

+----+-------+
| Id | Name |
+----+-------+
| 1 | Joe |
| 2 | Henry |
| 3 | Sam |
| 4 | Max |
+----+-------+
Orders 表:

+----+------------+
| Id | CustomerId |
+----+------------+
| 1 | 3 |
| 2 | 1 |
+----+------------+
例如给定上述表格,你的查询应返回:

+-----------+
| Customers |
+-----------+
| Henry |
| Max |

来源:力扣(LeetCode)
链接:力扣
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

select Name  Customers

from Customers

where id not in

(select distinct CustomerId  from Orders );

select c.Name as Customers

from Customers c left join Orders o

on c.Id = o.CustomerId

where o.CustomerId is null;

以上是关于343从不订购的客户的主要内容,如果未能解决你的问题,请参考以下文章

183. 从不订购的客户

从不订购的客户

183. 从不订购的客户

MySQL从不订购的客户

从不订购的客户-leetcode

2022-12-01:从不订购的客户。找出所有从不订购任何东西的客户,以下数据的答案输出是Henry和Max,sql语句如何写? DROP TABLE IF EXISTS `customers`; C