source_table と destination_table の 2 つのテーブルがあります
ソーステーブルを以下に示します
orderid orderno invoiceno amount
1 10 NULL 100
2 NULL 11 200
列でdestination_tableを更新する必要があります
orderid orderno amount
1 - -
2 - -
3 - -
条件に基づいて、送信元の orderid が送信先の orderid と一致します
ソース orderno の値が null でない場合、その値は destination の orderno 列で更新する必要があります。