It is possbile set/reset the AUTO_INCREMENT value of a MySQL table via
AUTO_INCREMENT
ALTER TABLE some_table AUTO_INCREMENT = 1000
However I need
set @db = 'your_db_name'; SELECT concat('ALTER TABLE ', @db, '.', TABLE_NAME, ' AUTO_INCREMENT = 0;') FROM information_schema.TABLES WHERE TABLE_SCHEMA = @db AND TABLE_TYPE = 'BASE TABLE'
Then copy-paste and run the output you get.