If you want to get values from both tables, you can use full outer join and take records which have one side as null:
select a.*, b.* from tableA a
full outer join tableB b on a.col = b.col
where a.col is null or b.col is null
Obviously this way all the values for either one table or the other will be null.