力扣:183. 从不订购的客户

力扣:183. 从不订购的客户

力扣:183. 从不订购的客户 

1、查询不在oders表customerid中的customers表的id,返回对应的名字。

# Write your MySQL query statement below
select Name as Customers
from Customers
where Id not in (select distinct CustomerId as Id from Orders)

 

上一篇:SQL如何获取时间的方法?


下一篇:MySQL 5.6 my.cnf 参数说明(转)