非常に長い時間の後に私が望む値を返すSQLクエリに問題があります。大きな時間応答のSQL
私はタイミング最適化のための私のコードで何を変更することができます?:
select *
from t1
where
(t1.date between '01/01/2016' and '05/01/2016')
and (t1.section = 'KA')
and t1.protocol not in (select t2.protocol from t2 where (date between '01/01/2016' and '05/01/2016') and (section = 'KA'))
t1とt2には何行ありますか? t1&t2の構造は何ですか? – SEarle1986