Reputation: 14096
The returned structure of an SQL query is: id | label
I've created a table with the same structure, how to insert the returned lines to this new table.
Upvotes: 0
Views: 49
Reputation: 4792
insert into SecondTable (id, label) select id, label from OriginalTable;
Upvotes: 0