SQL SERVER中如何执行“如果数据表中无数据则插入,有数据则更新”?
有个表t_test(id,value),其中,id为唯一索引,有没有比较高效的方法实现:“当重复插入时(id重复),执行更新操作,否则执行插入操作”?多谢。
------解决方案--------------------2008用merge
2008以前可以:
insert into t_test(id,values)
select *
from 数据集 a
where not exists (select 1 from t_test b where a.id=b.id)
update t_test
set values=a.values
from 数据集 a
where exists(select 1 from t_test b where a.id=b.id)
------解决方案--------------------create table t_test(id int primary key,value varchar(50))
insert into T_Test
values(111,'aaa')
go
declare @id int
declare @value varchar(50)
set @id = 111
set @value = '111'
if exists(select 1 from t_test where id=@id)
update T_Test
set value = @value
where ID = @id
else
insert into T_Test
select @id,@value
--插入重复数据后,发现数据被更新了,没有报错
select *
from t_test
------解决方案--------------------2008之后用Merge语句
之前就要自己写if条件了