Currently I’m running a query like this to add fields from one table into another.
INSERT INTO new_table (Num1, Num2, Num3)
SELECT Num1, Num2, Num3
FROM initial_table
My table contains many different columns, is there a way to move them all with one command rather than manually type each and every column?
If your tables are indentical, columns are in exactly same order and there are no IDENTITY columns you could do this: