Concept Flow - Finding unmatched rows with LEFT JOIN
Start with LEFT JOIN
Match rows from left table
Check if right table row exists
Yes No
Keep combined row
Result set
LEFT JOIN keeps all rows from the left table and matches rows from the right table. If no match, right side columns are NULL.