select c1,c2,c3
from t1
where not exists(
select *
from t2
where t1.c1 = t2.c1
and t1.c2 = t2.c2
and t1.c3 = t2.c3)
union all
select c1,c2,c3
from t2
where not exists(
select *
from t1
where t1.c1 = t2.c1
and t1.c2 = t2.c2
and t1.c3 = t2.c3)
Frågan#1
Finns det nåt att jämföra två identiska tabellers innehåll att som resultat visas endast de poster, som är olika i de båda tabellerna?