日期:2014-05-18 浏览次数:20643 次
go
if OBJECT_ID('a')is not null
drop table a
go
create table a(
id int,
num int
)
go
insert a
select 1,2 union all
select 2,2 union all
select 3,2 union all
select 4,2
go
if OBJECT_ID('b')is not null
drop table b
go
create table b(
id int,
num int
)
go
insert b
select 1,1 union all
select 2,2 union all
select 3,3 union all
select 4,4
update a set num=b.num from b where a.id=b.id
select * from a
/*
id num
1 1
2 2
3 3
4 4
*/
------解决方案--------------------
这样破?
update a set a2=b.b2 from b where a.a1=b.a1
也可以这样破
update a, b set a.a2=b.b2 where a.a1=b.a1
------解决方案--------------------