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

Which statement about INNER JOIN order is correct?

-- These two queries: -- A: FROM users u INNER JOIN orders o ON u.id = o.user_id -- B: FROM orders o INNER JOIN users u ON u.id = o.user_id