What is the query in SQL Server to insert rows with structure from one table to another table?
A couple ways
SELECT INTO
SELECT field1, field2, ... INTO Table1 FROM Table2
INSERT INTO
INSERT INTO Table1 field1, field2, ... SELECT field1, field2, ... FROM Table2