HTMLify

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

Comments