学习时间:
2023年1月22日
题目描述:

题解分享:
# 作 者 : 繁 华 倾 夏
# 力扣(LeetCode):183. 从不订购的客户
# MySQL 数据库
# 使用嵌套语句
select name as Customers
from Customers
where Id not in(select CustomerId from Orders)


# 作 者 : 繁 华 倾 夏
# 力扣(LeetCode):183. 从不订购的客户
# MySQL 数据库
# 使用嵌套语句
select name as Customers
from Customers
where Id not in(select CustomerId from Orders)

被折叠的 条评论
为什么被折叠?