Dadurch erhalten Sie alles in A, was nicht in B ist
select * from tableA
Except
select * from tableB
und umgekehrt
select * from tableB
Except
select * from tableA
Bearbeiten:So beigetreten:
(select * from tableA
Except
select * from tableB)
union all
(select * from tableB
Except
select * from tableA)