Oracle 语法 存在则更新否则插入新数据

前端之家收集整理的这篇文章主要介绍了Oracle 语法 存在则更新否则插入新数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

merge into my_table mt
using (SELECT [字段A] AS A from dual) t2
on (mt.A = t2.A)
when matched then
update set mt.B= [字段B]
when not matched then
INSERT (A,B)
VALUES([字段A],[字段B])

多用于存储过程

原文链接:https://www.f2er.com/oracle/212693.html

猜你在找的Oracle相关文章