#183 Customers Who Never Order
SELECT Name AS Customers
FROM Customers 
WHERE Id NOT IN (SELECT CustomerId FROM Orders);Last updated
Was this helpful?
SELECT Name AS Customers
FROM Customers 
WHERE Id NOT IN (SELECT CustomerId FROM Orders);Last updated
Was this helpful?