4 从不订购的客户
select c.Name as Customers from Customers c where id not in (select c.id from Customers c join Orders o on o.CustomerId = c.id);
4 从不订购的客户
select c.Name as Customers from Customers c where id not in (select c.id from Customers c join Orders o on o.CustomerId = c.id);