达梦数据库实现replace into操作
前言
我们在MySQL中会经常见到和使用到replace into指令,但在达梦数据库(截止到目前DM8版本)中,却不能支持此指令。下面就详细介绍下,如何在达梦数据库中实现replace into操作,即用merge into实现replace into操作。
具体实现原理
replace into 可理解为是两个操作:首先对原数据进行删除,然后再插入新数据;
merge into 是oracle中的指令,(据说DM 99%兼容Oracle,此说法并未考证~~),但在DM的官方文档说明中,明确写明支持merge into指令操作,因此,可用merge into替换replace into实现操作。
实例解析
例如MySQL中,用replace into指令替换属性id,numbers,age的值分别为2,100,15:
replace into test(id,numbers,age) values(2,100,15)
在达梦数据库中,使用merge into替换为:
merge into A.test
using (select 2 id,100 numbers,15 age from dual) t
on(A.test.id = t.id)
when matched then
update set A.test.numbers=t.numbers,A.test.age=t.age
when not matched then
insert (id,numbers,age) values(t.id,t.numbers,t.age)
其中,A为达梦数据库的模式名。
注意事项:
1.on后括号中跟随的条件属性应为主键信息;
2.merge into是通过执行using后括号内的sql语句结果逐条与on括号内条件进行匹配,若匹配则执行更新,若不匹配则执行插入;
3.when matched then语句需在when not matched then 之前,否则达梦数据库会报错;
4.关于dual表,我个人理解为类似于“缓存器”的表,你可以像它里面插入多条数据,删除多条数据,但你查询时,表中均只显示一个字段,一行数据。
示例图:
1)merge into 指令执行前
2)merge into 指令
3)merge into 指令执行后