INSERT INTO table1 TABLE table1_temp
Du kan ikke gøre det, fordi table1_temp
har forskellige sæt kolonner (du har droppet id
kolonne). Du skal specificere kolonner eksplicit (alle undtagen id
). kolonne):
INSERT INTO table1(col1, col2, ...) TABLE table1_temp