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
Try:
INSERT INTO table1 ( column1 ) SELECT col1 FROM table2
This is standard ANSI SQL and should work on any DBMS
It definitely works for: