Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Confrontando i valori di 2 tabelle ed elencando le righe diverse

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)