How to copy/append data from one table into another table with the same schema in SQL Server?
Edit:
I mean to say there is query
select *
into table1
from table2
where 1=1
which creates table1 with the same schema as well as data as in table2.
Is there any short query like this to only copy entire data only into an already existing table?