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 )
相關文章
相關標籤/搜索