183. Customers Who Never Order

# Write your MySQL query statement below
select Name Customers 
from Customers
where Customers.Id  not in
    (   select Customers.Id
        from Orders,Customers
        where Customers.Id=Orders.CustomerId )
相关文章
相关标签/搜索