首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sqlserver 适用的功能 upsert

2012-07-19 
sqlserver 实用的功能 upsert?merge into Target?using Sourceon (condition)when matched then?update se

sqlserver 实用的功能 upsert

?

merge into Target?using Source

on (condition)

when matched then?

update set column1=value1

when not matched then

insert (column1,?column2) values (value1,?value2);

?

?

解释:

Target?: 目标表名

Source: 源表名

Condition:为匹配条件

当matched时更新,not时则更新

?

热点排行