Concept Flow - LEFT JOIN with NULL result rows
Start with LEFT table
For each row in LEFT table
Find matching rows in RIGHT table
Match?
Fill RIGHT columns with NULL
Combine LEFT row with RIGHT row or NULLs
Add combined row to result
Repeat for all LEFT rows
END
The LEFT JOIN takes each row from the left table and tries to find matching rows in the right table. If no match is found, it fills the right side columns with NULL and still includes the left row in the result.