Code to rest Auto Increment in MYSQL ADMIN:: 1 Choose Databse: If List is Populated: set @autoid :=0; If Table is empty you only need the following code:
2 Then click SQL Tab and Enter code.
3 Change {employee to the table to change:
update employee set id = @autoid := (@autoid+1);
alter table employee Auto_Increment = 1;
alter table employee Auto_Increment = 1;
