Ini salah satu caranya:
select coalesce(t1.ssn, t2.ssn)
from t1 full outer join
t2
on t1.ssn = t2.ssn
where t1.ssn is null or t2.ssn is null;
Ini berfungsi di sebagian besar database, tetapi tidak di MySQL. Berikut ini harus bekerja di hampir semua database:
select ssn
from ((select ssn, 't1' as which
from t1
) union all
(select ssn, 't2' as which
from t2
)
) t
group by ssn
having count(distinct which) = 1