一、用途:
可以同时从1个或者多个源表对目标表进行更新、插入、删除数据,经常用于操作大量的数据,即对于大批量的数据更新、插入时效率极高。
二、语法:
merge into table_name alias1 --目标表 可以用别名
using (table|view|sub_query) alias2 --数据源表 可以是表、视图、子查询
on (join condition) --关联条件
when matched then --当关联条件成立时 更新,删除,插入的where部分为可选
--更新
update table_name set col1=colvalue where……
--删除
delete from table_name where col2=colvalue where……
--可以只更新不删除 也可以只删除不更新。
--如果更新和删除同时存在,删除的条件一定要在更新的条件内,否则数据不能删除。
when not matched then --当关联条件不成立时
--插入
insert (col3) values (col3values) where……
when not matched by source then --当源表不存在,目标表存在的数据删除
delete;
三、语句讲解:
1、on后面的关联条件成立时,可以update、delete。
2、on后面的关联条件不成立时,可以insert。
3、当源表中不存在数据,而目标表中存在的数据可以删除。
四、注意事项:
1、只会操作“操作表”,源表不会有任何变化。
2、不一定要把update,delete,insert 操作都写全,可以根据实际情况。
3、merge into效率很高,强烈建议使用,尤其是在一次性提交事务中,可以先建一个临时表,更新完后,清空数据,这样update锁表的几率很小了。
4、Merge语句还有一个强大的功能是通过OUTPUT子句,可以将刚刚做过变动的数据进行输出。我们在上面的Merge语句后加入OUTPUT子句。
5、可以使用TOP关键字限制目标表被操作的行,如图8所示。在图2的语句基础上加上了TOP关键字,我们看到只有两行被更新。
五、举例说明:
1、首先看两张表test_emp(表结构和emp相同,只是其中个别数据不一样。),emp。
test_emp表:
emp表:
merge into 语句:
merge into test_emp a --需要操作的表 可以用别名
using emp b
on (a.EMPNO = b.EMPNO)
when matched then --当关联条件成立时 更新,删除,插入的where部分为可选
update set a.sal= b.sal where a.empno = '7566' or a.empno = '7654'
delete where (empno = '7654')
when not matched then
insert (a.empno, a.ename, a.job, a.mgr, a.hiredate, a.sal, a.comm, a.deptno)
values (b.empno, b.ename, b.job, b.mgr, b.hiredate, b.sal, b.comm, b.deptno);
如果delete后面的where条件不能满足前面update的where条件,不能删除数据。
merge into test_emp a --需要操作的表 可以用别名
using emp b
on (a.EMPNO = b.EMPNO)
when matched then --当关联条件成立时 更新,删除,插入的where部分为可选
update set a.sal= b.sal where a.empno = '7566'
--or a.empno = '7654' 注释掉这个就不能删除数据了
delete where (empno = '7654')
when not matched then
insert (a.empno, a.ename, a.job, a.mgr, a.hiredate, a.sal, a.comm, a.deptno)
values (b.empno, b.ename, b.job, b.mgr, b.hiredate, b.sal, b.comm, b.deptno);
empno = ‘7654’,已经删除了,刚开始没有删除是因为:然而并没有删除 empno = ‘7654’的记录缘由是该条记录不满足update语句后面的where条件。
最终的结果test_emp如图:
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36941.html