SQL - LEFT and RIGHT JOIN
Find the mistake in this query to get unmatched orders:
SELECT o.order_id FROM orders o LEFT JOIN customers c ON o.customer_id = c.id WHERE c.id IS NOT NULL;
