标题: Leecode SQL 183. Customers Who Never Order [打印本页] 作者: 万万哇 时间: 2024-10-2 21:58 标题: Leecode SQL 183. Customers Who Never Order
Customers Who Never Order
Write a solution to find all customers who never order anything.
Return the result table in any order.
The result format is in the following example.
Input
Customers =
idname1Joe2Henry3Sam4Max Orders =
idcustomerId1321 Output
CustomersHenryMax My solution: