まず、distinct
は必要ありません 。クエリは次のように記述できます:
select *
from [email protected]
where column1 in (
select column2
from [email protected]
where column3 > 0
)
order by column1
第二に、それを書くには(少なくとも)さらに2つの方法があります。 JOIN
のいずれか :
select t1.*
from [email protected] t1
join [email protected] t2
where t2.column2 = t1.column1
and t2.column3 > 0
group by
t1.id, t1.column1, ...
order by t1.column1
または(私の好み)EXISTS
:
select t1.*
from [email protected] t1
where exists
( select *
from [email protected]
where t2.column2 = t1.column1
and t2.column3 > 0
)
order by column1
いずれにせよ、それらすべての実行計画を確認する必要があります。
table1.column1
にインデックスがある場合、パフォーマンスは最高になると思います。 およびtable2
の場合 、column2
のインデックス または(column3, column2)
の複合インデックス