首页 > 其他 > 详细

MERGE INTO USING用法

时间:2015-08-18 15:52:02      阅读:247      评论:0      收藏:0      [点我收藏+]
MERGE INTO [your table-name] [rename your table here]     
USING ( [write your query here] )[rename your query-sql and using just like a table] ON ([conditional expression here] AND [...]...)     
WHEN MATHED THEN [here you can execute some update sql or something else ]
WHEN NOT MATHED THEN [execute something else here ! ] 

例如:

MERGE INTO table1 a USING ( select id,name from table2) b ON (a.id=b.id)     
WHEN MATHED THEN update set a.name=b.name
WHEN NOT MATHED THEN insert (id,name) values(‘id‘,‘name‘);

解析:

匹配table1 a,用b这个查询结果,用on建立联系,当匹配上用update,匹配不上用insert。

MERGE INTO USING用法

原文:http://www.cnblogs.com/xiufengd/p/4739247.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!