SecurityとCallPutの2つのテーブルがあります。Security(table1)にはsecurity_idとmaturity_date(nol以外の値)が含まれ、CallPut(table2)にはsecurity_idとOdate(日時形式の値を含むnull以外の値)が含まれます。 maturity_dateセキュリティIDがCallput(table2)に存在し、セキュリティテーブルと一致するmaturity_dateの代わりにodate列の値が必要です
例:セキュリティ(表1)
Security_id|Maturity_date
abcd 25Jan2020
bcde 25jan2021
Callput(tabble2)
Security_id|Odate
abcd 25Jan2015
必要な出力
Security_id|Maturity_date
abcd 25Jan2015 (since here id is there in callput it takes odate)
bcde 25jan2021 (since here id is not there in callput it takes maturity date)
私はoraclesqlを使用しています。助けてください。前もって感謝します