Concept Flow - FULL OUTER JOIN
Start with Table A
Match rows on join condition
Keep matched rows from both
Add unmatched rows from A with NULLs for B
Add unmatched rows from B with NULLs for A
Combine all rows into result
Output Result
FULL OUTER JOIN combines rows from both tables matching on a condition, including unmatched rows from both sides with NULLs where no match exists.