博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle merge into 使用记录
阅读量:5940 次
发布时间:2019-06-19

本文共 520 字,大约阅读时间需要 1 分钟。

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

merge into myd_nsrdt nusing (select '9'as mydtmid,'1'as tmtype,'370200123456788'as nsrsbh,'' as nsrmc,  'sn' as region,4 as pf,''as yj,'18888888888' as phone,'18888888888' as nowphone,sysdate as addtime from dual) mon(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.nsrsbhwhen 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)

 

转载地址:http://ecmtx.baihongyu.com/

你可能感兴趣的文章
SHELL获取计算机外网ip的几种写法
查看>>
博客正在搬迁中
查看>>
触发器与存储过程的区别
查看>>
我的友情链接
查看>>
centos搭建supervisor
查看>>
linux日志分割
查看>>
Samba再报安全漏洞
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Spring学习资料之 依赖注入(一)
查看>>
安装win7提示安装程序无法创建新的系统分区和定位现有系统分区
查看>>
那些年,我跳过的坑(一)
查看>>
快递查询接口的调用与解析案例
查看>>
我的友情链接
查看>>
服务器性能优化配置建议
查看>>
GetWindowRect
查看>>
oracle sql语句实现累加、累减、累乘、累除
查看>>
SCNetworkReachabilityRef监测网络状态
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
接口由40秒到200ms优化记录
查看>>