I am trying to INSERT INTO a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle t
INSERT INTO
You could try this if you want to insert all column using SELECT * INTO table.
SELECT * INTO
SELECT * INTO Table2 FROM Table1;