Updated: 11 April 2024
Insert into table the result of a select query
INSERT INTO orders (col1, col2, col3)
SELECT foo, bar, baz
FROM our_table
WHERE condition;
Freelance software engineer United Kingdom
Updated: 11 April 2024
Insert into table the result of a select query
INSERT INTO orders (col1, col2, col3)
SELECT foo, bar, baz
FROM our_table
WHERE condition;