https://leetcode.com/problems/customers-who-never-order/description/ Easy

Решение

SELECT c.name AS Customers
FROM Customers c
LEFT JOIN Orders o
  ON c.id = o.customerId
WHERE o.id IS NULL;