sql 语句 相同数据更新,不同数据插入

<span style="color: #000000;">[b]执行一条sql语句,相同的vendor_id ,inventory_item_id就更新,不同的插入新增数据[/b]</span>
 
<span style="color: #008000;">merge into</span> tscs_ems_upload_storage_t a
<span style="color: #008000;">using</span> (select ? as vendor_id,
                     ? as inventory_item_id ,
                     ? as description ,? as unit,
                     ? as quantity,? as check_date,
                     ? as last_updated_by,
                     ? as created_by from dual) b
<span style="color: #008000;">on</span> (a.vendor_id = b.vendor_id and a.inventory_item_id = b.inventory_item_id)
<span style="color: #008000;">when matched then</span>
      <span style="color: #008000;">update set</span>
            a.description  = b.description,
            a.unit = b.unit,
            a.quantity  = b.quantity,
            a.check_date  = to_date(b.check_date,'yyyy-mm-dd'),
            a.last_updated_by = b.last_updated_by,
           a.last_update_date = sysdate
<span style="color: #008000;">when not matched then</span>
 <span style="color: #008000;">  insert</span> (a.id,a.vendor_id,a.inventory_item_id,a.description,a.unit,a.quantity,
             a.check_date,a.created_by,a.last_updated_by)
<span style="color: #008000;">values</span>(tscs_ems_upload_storage_s.nextval,b.vendor_id,
            b.inventory_item_id,b.description,b.unit,b.quantity,
             to_date(b.check_date,'yyyy-mm-dd'),b.created_by,b.last_updated_by)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值