Keep Rows Without a Match
An outer join keeps rows that have no matching partner. LEFT JOIN keeps every left-side row and fills unmatched right-side columns with NULL. FULL JOIN keeps unmatched rows from both sides.
In a LEFT JOIN, what happens to right-side columns when no right row matches?