从不订购的客户-leetcode
Posted 吴丹阳的技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从不订购的客户-leetcode相关的知识,希望对你有一定的参考价值。
从不订购的客户
sql 编程
1. 地址
https://leetcode-cn.com/problems/customers-who-never-order/
2. 解法
子查询
select
????Name?as?Customers
from
????Customers
where
????Id?not?in?(
????????select
????????????distinct?CustomerId
????????from
????????????Orders
????)
以上是关于从不订购的客户-leetcode的主要内容,如果未能解决你的问题,请参考以下文章