可以在数据库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)
use A
go
insert into a select username,pwd from[B]..b
-------
同一数据库服务器内,通过 [数据库名]..表名 可以操作其他数据库的表.
考虑数据的唯一性(用户名唯一),可以在对b的查询中加过滤条件.
insert into a select * from B.b
试试
不用语句也可以实现
导出表格
在导回去