Problem Statement
Which statement about LEFT JOIN is correct?
Explanation
LEFT JOIN preserves every row from the left input and fills right-side columns with NULL when a match is missing.
Use it to find presence plus absence cases, such as customers without orders.
Code Solution
SolutionRead Only
SELECT c.id, o.id AS order_id FROM customers c LEFT JOIN orders o ON o.customer_id = c.id;
