Concept Flow - LEFT JOIN execution behavior
Start with Left Table
For each row in Left Table
Find matching rows in Right Table
Yes No
Combine rows
Add combined row to result
Repeat for next Left row
End
The LEFT JOIN goes through each row in the left table, tries to find matching rows in the right table, and combines them. If no match is found, it fills the right side with NULLs and still includes the left row.