0
aとcの両方が400レコードの同じテーブルです。 bとdも300レコードで同じテーブルです。これを実行するのに約4分かかります。どうすればこれをスピードアップできますか?SQLの実行に時間がかかります
select a.docref
from a
left outer b
on a.cono=b.cono and a.tt=b.tt and a.docref=b.docref
where a.cono='VC'
and b.accn08='9005100'
and a.pstper=11609
and a.cbpref not in (select c.cbpref
from c
left outer join d
on c.cono=d.cono and c.tt=d.tt and c.docref=d.docref
where c.cono='VC'
and d.accn08='9005100'
and c.pstper=11609
and c.tt='RX')