I want to select all ids from an existing table and insert them into a newly created table, in this sort of fashion:
INSERT INTO product_extend (product_id) VALUES (SELECT product_id FROM products)
Creating one new row per id. Can anyone show me how to do this?