Detta ger dig allt i A som inte finns i B
select * from tableA
Except
select * from tableB
och vice versa
select * from tableB
Except
select * from tableA
Edit:Gick med på detta sätt:
(select * from tableA
Except
select * from tableB)
union all
(select * from tableB
Except
select * from tableA)