I am using MySQL 5. I need to set the seed value as 1000 for my auto increment field. How can I set it?
To set when creating your table:
CREATE TABLE xxx(...) AUTO_INCREMENT = 1000;
To set after creating the table:
ALTER TABLE xxx AUTO_INCREMENT = 1000;