auto_increment columns only increment if they are passed a NULL value and work by adding 1 to the maximum value in the column. If you insert '234098' into the column and then use NULL values for inserting the rest of the records, the column will auto_increment starting at '234099'.