HTMLify
Q183_Customers_Who_Never_Order.sql
Views: 355 | Author: djdj
select name as Customers from Customers
where id not in(select customerId from Orders);
select name as Customers from Customers
where id not in(select customerId from Orders);