Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLLEFT and RIGHT JOINSingle-choice MCQ

A LEFT JOIN finds no matching row on the right side. What values appear for the right table's columns?

SELECT u.name, o.id FROM users u LEFT JOIN orders o ON o.user_id = u.id;