I am trying to insert data from one of my existing table into another existing table.
Is it possible to insert data into any existing table using select * into
select * into
You should try
INSERT INTO ExistingTable (Columns,..) SELECT Columns,... FROM OtherTable
Have a look at INSERT
and SQL SERVER – Insert Data From One Table to Another Table – INSERT INTO SELECT – SELECT INTO TABLE