
Desicription
Suppose that a website contains two tables, the Customers table and the Orders table. Write a SQL query to find all customers who never order anything.
Table: Customers.
1 |
+----+-------+ |
Table: Orders.
1 |
+----+------------+ |
Using the above tables as example, return the following:
1 |
+-----------+ |
Solution
1 |
SELECT Name |




近期评论