Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLINNER JOINSingle-choice MCQ

An INNER JOIN chains three tables. Which rows survive in the final result?

SELECT * FROM orders o INNER JOIN customers c ON o.customer_id = c.id INNER JOIN regions r ON c.region_id = r.id;