Returns rows from both tables that do not match each other.
select * from TableA full outer join TableB on TableA.id = TableB.id where TableA.id is null or TableB.id is null;id | id----+---- 6 | 7 | 8 | | 9 | 10 | 11(6 rows)
Union
Merges the results of two queries, removes duplicates, and sorts the rows.
select * from TableA union select * from TableB;id----10 2 5 4 6 9 111 3 8 7(11 rows)
Union All
Combines all rows from multiple queries, including duplicates, without sorting
select * from TableA union all select * from TableB;id---- 1 2 3 4 5 6 7 8 1 2 3 4 5 91011(16 rows)