我有两个表 source_table 和 destination_table
源表如下
orderid orderno invoiceno amount
1 10 NULL 100
2 NULL 11 200
我需要用列更新destination_table
orderid orderno amount
1 - -
2 - -
3 - -
根据条件,源的 orderid 与目标的 orderid 匹配
如果源 orderno 值不为空,则应在目标的 orderno 列中更新该值,否则应在目标 orderno 列中更新源 invoiceno