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
In informix it works as Claude said:
INSERT INTO table (column1, column2) VALUES (value1, value2);