oracle 实现 存在记录就更新,不存在就插入 merge into

前端之家收集整理的这篇文章主要介绍了oracle 实现 存在记录就更新,不存在就插入 merge into前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
MERGE INTO emp t1
USING  (
             select count(*) c from emp t2 where t2.empno='2000' )x
ON (x.c > 0)
when matched then 
      update set t1.job='c++' where t1.empno='1000'
when not matched then 
      insert values('3000','zhangs','c',777,sysdate,9000,2,10);
原文链接:https://www.f2er.com/oracle/210094.html

猜你在找的Oracle相关文章