代码语言:javascript复制
# Write your MySQL query statement below
select Name Customers from Customers where Id not in(
select c.Id
from Customers c,Orders o
where c.Id = o.CustomerId)