I want to migrate data from one table to another without copying the autoincremented ID field.
source_table:
ID LABEL
-- -----
5 text
6 text2
dest_table:
ID LABEL
-- -----
SELECT LABEL
INTO dest_table
FROM source_table
Will the above statement work knowing that ID
in dest_table is an auto-incremented primary key?