回复 6楼 mywisdom88
2、数据在同1台电脑上,不同版本的SQL,也是用
在电脑A的查询分析器上运行以下代码:
use test
go
update sd set sd06=b.sd06
FROM OpenDataSource('sqloledb','Data Source="192.168.1.100";User ID=sa;Password=123456;database=test').[test].[dbo].[sd]b
where sd.sd01=b.sd01 and b.sd06=0
3、数据库在同1台电脑上,相同的SQL版本。
sd表分别在 test 和 mytest上
use test
go
update sd set sd06=b.sd06
FROM [mytest].[dbo].[sd]b
where sd.sd01=b.sd01 and b.sd06=0
4、数据库在同1台电脑上,相同的SQL版本,同1个数据库中,不同的表名称
如:表名称为a_sd和b_sd 在数据库 test中
use test
go
update a_sd set sd06=b.sd06
FROM b_sd b
where a_sd.sd01=b.sd01 and b.sd06=0
[此贴子已经被作者于2016-9-9 14:08编辑过]