Last week, I created some scripts to move data from an old database to a new one. Some tables consisted of many fields and the old ones were not typed, that is, all fields where char, varchar, etc. INSERT INTO targetTable
( targetField1, targetField2, targetField3, ... targetFieldN
)
SELECT targetField1...