sql server 2000 把一个数据库中一张表的数据复制到另一个数据库的一张表中?

2024-12-21 12:38:05
推荐回答(4个)
回答1:

可以在数据库A中增加查询,并用如下sql 来实现
insert into a(username,pwd)
select username,pwd from B.dbo.a
where not exists(select * from A.dbo.a where B.dbo.a.username = A.dbo.a.username)

回答2:

use A
go

insert into a select username,pwd from[B]..b
-------
同一数据库服务器内,通过 [数据库名]..表名 可以操作其他数据库的表.
考虑数据的唯一性(用户名唯一),可以在对b的查询中加过滤条件.

回答3:

insert into a select * from B.b
试试

回答4:

不用语句也可以实现
导出表格
在导回去