22,294
社区成员
发帖
与我相关
我的任务
分享
--> 测试数据: @A
declare @A table (id int,c1 varchar(1),c2 varchar(1),c3 varchar(1))
insert into @A
select 1,'a','b','c' union all
select 2,'d','e','f' union all
select 3,'g','h','i'
--> 测试数据: @B
declare @B table (id int,c1 varchar(1),c2 varchar(1),c3 varchar(1))
insert into @B
select 4,'j','k','l' union all
select 5,'m','n','o' union all
select 6,'p','q','r' union all
select 7,'s','t','u'
--例如更新@A的第二条变成@B的id=6的数据
update @A
set c1=b.c1 ,c2=b.c2,c3=b.c3
from @A a,@B b where a.id=2 and b.id=6
select * from @A
/*
id c1 c2 c3
----------- ---- ---- ----
1 a b c
2 p q r
3 g h i
*/
update a set
a = b.a
,b=b.b
,c=b.c
from t a,t b
where (a.条件1) and (b.条件2)
--try
UPDATE a
SET a = b.a,
b = b.b,
c = b.c
FROM t a,
t b
WHERE (a.条件1)
AND (b.条件2)