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

You join `users` and `logins` so every user appears even if they never logged in. The join must put `users` on the left. Which JOIN type is correct?

SELECT u.name, l.logged_at FROM users u ____ logins l ON l.user_id = u.id;