5 questions to test your understanding
A query uses INNER JOIN to combine a customers table with an orders table. A customer named 'Smith' has never placed an order. What appears in the result?
You want to find all customers who have NEVER placed an order. Which query achieves this?
A LEFT JOIN between tables A and B will always return at least as many rows as an INNER JOIN on the same tables with the same condition.
NULL values in a LEFT JOIN result usually indicate missing or corrupt data in the database.
Explain why you would use a LEFT JOIN instead of an INNER JOIN, and describe a scenario where the difference matters.