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
@Ryan Chase Can you do this by selecting all columns using *? Yes!
INSERT INTO yourtable2 SELECT * FROM yourtable1