это мой запрос, его выполнение может занять больше времени, может кто-нибудь сделать это быстрее !!!Я думаю, что не существует, это требует больше времени, но я не знаю, как преобразовать его в левое внешнее объединение с большим количеством условий. Я много раз менял его, но результат менялся вместе с ним.
заранее спасибо.
select count(1) from(
SELECT distinct t.tax_payer_no,taxestab.estab_no
from tax_period tp,
imposition_base impb ,tax_acct_base_imp tabi, tax_account ta, tax_payer t , tax_form tf,tax_Type tt, tax_estab taxestab, establishment est
where
t.tax_payer_no=ta.tax_payer_no
and tp.form_no=tf.form_NO
and tf.tax_Type_no=tt.tax_Type_No
and ta.tax_Type_no=tt.tax_type_no
and (( tabi.tax_account_No=ta.tax_account_no and tt.tax_Type_No!=2) OR( tt.tax_Type_No=2))
and impb.imposition_base_no(+) = tp.imposition_base_no
AND impb.imposition_base_no = tabi.imposition_base_no(+)
and ta.tax_Account_No=taxestab.tax_account_no(+)
and taxestab.estab_no=est.estab_no(+)
and ta.tax_account_no={0}
and ta.close_date is null
and not exists ( SELECT 1
FROM assessment ass
WHERE tax_account_no = ta.tax_account_No
AND ass.tax_period_no= tp.tax_period_no
AND (ass.estab_no = taxestab.estab_no OR taxestab.estab_no IS NULL)
)
and not exists (SELECT 1 FROM document doc
WHERE doc.tax_period_no =tp.tax_period_no
AND doc.tax_type_no = ta.tax_type_no
AND doc.tax_payer_no = t.tax_payer_no
AND doc.tax_centre_no = t.tax_centre_no
AND doc.doc_type_no = 1
AND doc.doc_state_no <> 3
AND (doc.estab_no = taxestab.estab_no OR taxestab.estab_no IS NULL))