私は次のクエリを持っています:
select id from t1
intersect
select id from t2
intersect
select id from t3
一部のテーブルではidが一意でない可能性があるため、distinctを使用する必要があります。
一般的に何が良いですか:
select distinct id from (
select id from t1
intersect
select id from t2
intersect
select id from t3)
また
select distinct id from t1
intersect
select id from t2 -- here id is unique
intersect
select distinct id from t3