码迷,mamicode.com
首页 > 数据库 > 详细

Oracle merge into 使用记录

时间:2015-05-26 09:04:26      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

符合条件进行更新操作,不符合则进行插入操作.

merge into myd_nsrdt n
using (select 9as mydtmid,1as tmtype,370200123456788as nsrsbh,‘‘ as nsrmc,
  sn as region,4 as pf,‘‘as yj,18888888888 as phone,18888888888 as nowphone,sysdate as addtime from dual) m
on(n.mydtmid=m.mydtmid and n.nsrsbh=m.nsrsbh)
when matched then
  update set n.pf=m.pf,n.yj=m.yj
    where n.mydtmid=m.mydtmid and n.nsrsbh=m.nsrsbh
when not matched then
  insert values(seq_myd.nextval,m.mydtmid,m.tmtype,m.nsrsbh,m.nsrmc,m.region,m.pf,m.yj,m.phone,m.nowphone,m.addtime)

 

Oracle merge into 使用记录

标签:

原文地址:http://www.cnblogs.com/yshyee/p/4529619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!