мигрировать таблицу SQL еще одну базу данных
INSERT INTO dbo.YourTableNameHere
SELECT *
FROM [SourceServer].[SourceDatabase].dbo.YourTableNameHere
Kind Kookaburra
INSERT INTO dbo.YourTableNameHere
SELECT *
FROM [SourceServer].[SourceDatabase].dbo.YourTableNameHere
INSERT INTO my_table my
SELECT * FROM another_table an
WHERE an.col1 > 10;
INSERT INTO my_table (colA, colB)
SELECT an.col1 AS colA, an.col2 AS colB FROM another_table an
WHERE an.col1 > 10;