To create a new table from an existing table: (copying all rows from Old_Table into de New_Table):
SELECT * INTO New_table FROM Old_Table
To copy the data from one table to another (when you have already created them):
Insert into Table_Name2 select top 1 * from Table_Name1
Remember to remove the top 1
argument and apply a relevant where clause if needed on the Select