Znajdź klientów, którzy nie złożyli żadnego zamówienia.
Schemat: OE, Tabele: Customers, Orders, Kolumny: customer_id, cust_first_name, cust_last_name, order_id, Wynik: 272 rows
[spoiler title=’Rozwiązanie’ style=’default’ collapse_link=’true’]
SELECT customer_id, c.cust_first_name, c.cust_last_name
FROM customers c LEFT OUTER JOIN orders o USING(customer_id)
WHERE o.order_id IS NULL
ORDER BY customer_id;
[/spoiler]