Cela devrait fonctionner si vous passez à un where
clause :
select *
from acc_accounts acc join
kp_paramcore p
on acc.account_no = p.accountnum and
acc.suffix = p.suffixc LEFT JOIN
ftf_rates fx
ON p.maturestart = fx.ftf_vadealtsinir and
p.maturefinish = fx.ftf_vadeustsinir and
fx.statusrec = 'A' and
fx.currencycode = acc.currencsw_kod and
fx.status= 'A'
where fx.ftf_validitystartdate= (SELECT MAX(ff.ftf_validitystartdate)
FROM ftf_rates ff
WHERE ff.status = 'A' and
ff.statusrec = 'A'
p.v_CurrentDate BETWEEN ff.systemstartdate AND ff.systemfinishdate AND ff.currencycode = acc.currencsw_kod
)
Cependant, vous perdez les caractéristiques de "jointure externe gauche", vous voudriez donc également ajouter :or fx.ftf_validitystartdate is null
. Je suppose que v_CurrentDate vient de "p". C'est toujours une bonne idée d'utiliser des alias de table avant les noms de colonne.
Cependant, je me demande si la sous-requête est vraiment nécessaire. Il n'est nécessaire que lorsqu'il existe plusieurs enregistrements remplissant les conditions à l'intérieur de la sous-requête. Sinon, je pense que vous pouvez simplement changer le on
clause à :
ON p.maturestart = fx.ftf_vadealtsinir and
p.maturefinish = fx.ftf_vadeustsinir and
fx.statusrec = 'A' and
fx.currencycode = acc.currencsw_kod and
fx.status= 'A'and
p.v_CurrentDate BETWEEN fx.systemstartdate AND fx.systemfinishdate