我是靠谱客的博主 天真石头,最近开发中收集的这篇文章主要介绍merge into using() on,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

merge into XX(表) b

using                                                                                                   --(可以是某些值,可以是表)

(

例1:(select '72' as id, 'jx' as name, ‘25’ as age) a                            --某值

例2:sgpms.a_pay_flow a                                                                 --某表

)

on (a.id = b.id)

when matchen then --当满足on的值时,

update

set b.zd1 = a.zd1

b.zd2 = a.zd2

where XXXX --修改b表字段值等于a表的

when not matchen then --当不满足on时

update set / inset () values --执行修改或者插入

——————————————————————————————————

不知道这样对不对还,先记一下

最后

以上就是天真石头为你收集整理的merge into using() on的全部内容,希望文章能够帮你解决merge into using() on所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部