我是靠谱客的博主 迷你超短裙,最近开发中收集的这篇文章主要介绍MERGE INTO USING ON WHEN matched / not matched then update / insert 用法——匹配上用update,匹配不上用insert,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

MERGE INTO USING用法

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 ON WHEN matched / not matched then update / insert 用法——匹配上用update,匹配不上用insert的全部内容,希望文章能够帮你解决MERGE INTO USING ON WHEN matched / not matched then update / insert 用法——匹配上用update,匹配不上用insert所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部