Điều này sẽ cung cấp cho bạn mọi thứ ở A mà không phải ở B
select * from tableA
Except
select * from tableB
và ngược lại
select * from tableB
Except
select * from tableA
Chỉnh sửa:Đã tham gia theo cách này:
(select * from tableA
Except
select * from tableB)
union all
(select * from tableB
Except
select * from tableA)