183_Customers Who Never Order
Suppose that a website contains two tables, theCustomers
table and theOrders
table. Write a SQL query to find all customers who never order anything.
Table:Customers
.
Table:Orders
.
Using the above tables as example, return the following:
Solution 1 : OUTER JOIN
Solution 2: Subqueries
Last updated