INTERSECT演算子は、2つのクエリからの一致する値を含む結果セットを返します。
select * from tableA
where term_a in
( select term_a from tableA
intersect
select term_b from tableB )
;
TABLEAから追加の列を選択するため、交差の出力をサブクエリとして使用する必要があります。
INTERSECT演算子は、2つのクエリからの一致する値を含む結果セットを返します。
select * from tableA
where term_a in
( select term_a from tableA
intersect
select term_b from tableB )
;
TABLEAから追加の列を選択するため、交差の出力をサブクエリとして使用する必要があります。