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');
相關文章
相關標籤/搜索