Concept Flow - FULL OUTER JOIN behavior
Start with Table A and Table B
Match rows on join condition
Combine matched rows into result
Add unmatched rows from Table A with NULLs for B
Add unmatched rows from Table B with NULLs for A
Final Result Set
FULL OUTER JOIN returns all rows from both tables, matching rows where possible, and fills NULLs where no match exists.