insert into 原始表明([字段名])
select [要复制的表名] from 数据库名.表名
--在当前要接收数据的数据库下执行
Example :
insert into dbo.test([name])
select [name] from MSPetShop4Services.dbo.test_2
select [要复制的表名] from 数据库名.表名
--在当前要接收数据的数据库下执行
Example :
insert into dbo.test([name])
select [name] from MSPetShop4Services.dbo.test_2