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
Instead of VALUES part of INSERT query, just use SELECT query as below.
VALUES
INSERT
SELECT
INSERT INTO table1 ( column1 , 2, 3... ) SELECT col1, 2, 3... FROM table2