Sqlserver添加或更新数据SQL

Merge into [tableName] as t

Using(select [@id] as tid) as t1 on t1.tid=t.id

when matched then update set name='name1'

when not matched then insert(name) values('name');
相关文章
相关标签/搜索