SQL - LEFT and RIGHT JOIN
What is wrong with this query if we want to list all customers and their orders, including customers with no orders?
SELECT c.name, o.order_id FROM Customers c INNER JOIN Orders o ON c.id = o.customer_id;
