You probably are looking for an outer join or an outer excluding join.
OUTER JOIN

SELECT *
FROM tableA a
FULL OUTER JOIN tableB b
ON a.column = b.column
OUTER EXCLUDING JOIN

SELECT *
FROM tableA a
FULL OUTER JOIN tableB b
ON a.column = a.column
WHERE a.column IS NULL OR b.column IS NULL

The graphs in this answer are taken from this very useful article.