Reset Identity value of mysql
Now I reset the auto_increment
To start with an AUTO_INCREMENT value other than 1, set that value with CREATE TABLE or ALTER TABLE, like this:
Example:
ALTER TABLE tablename AUTO_INCREMENT = 1
Reset Identity value of mysql
ALTER TABLE tablename AUTO_INCREMENT = 1
0 Comments