How to set a field auto increment without auto increment key in mysql or how set a field auto increment with start value 6000 in mysql?
ALTER TABLE tbl_name AUTO_INCREMENT = 6000
but be aware you should have no PK lager 6000 in this table !