Ini akan memberi Anda segalanya di A yang tidak ada di B
select * from tableA
Except
select * from tableB
dan sebaliknya
select * from tableB
Except
select * from tableA
Sunting:Bergabung dengan cara ini:
(select * from tableA
Except
select * from tableB)
union all
(select * from tableB
Except
select * from tableA)