Find customers who never order any product so far.
Solution:
select custname from Customerwhere custid not in ( select custid from Orders)
select custname from Customer
where custid not in (
select custid from Orders
)