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

What happens when you INNER JOIN two tables on a column that is NULL in some rows of both tables?

SELECT a.id FROM a INNER JOIN b ON a.code = b.code; -- both a.code and b.code are NULL in some rows