Questo ti darà tutto in A che non è in B
select * from tableA
Except
select * from tableB
e viceversa
select * from tableB
Except
select * from tableA
Modifica:unito in questo modo:
(select * from tableA
Except
select * from tableB)
union all
(select * from tableB
Except
select * from tableA)