Concept Flow - LEFT JOIN
Start with LEFT table
For each row in LEFT table
Find matching rows in RIGHT table
Yes No
Combine
Add to result
Next row
End
LEFT JOIN takes all rows from the left table and matches rows from the right table. If no match, it fills with NULLs.