What is the query in SQL Server to insert rows with structure from one table to another table?
Sounds like you want something like this:
INSERT INTO DestTable (Column1,COlumn2) SELECT Column1, Column2 FROM SourceTable