Concept Flow - LEFT JOIN preserving all left rows
Start with LEFT table
For each row in LEFT table
Find matching rows in RIGHT table
Combine LEFT and RIGHT row
Combine LEFT row with NULLs for RIGHT
Add combined row to result
Repeat for all LEFT rows
Result: All LEFT rows preserved
LEFT JOIN keeps every row from the left table and adds matching rows from the right table or NULL if no match.