mysql how to reset the auto increment counter code example
Example 1: mysql reset auto increment value
ALTER TABLE table_name AUTO_INCREMENT = 1;
Example 2: mysql reset auto increment to 1
ALTER TABLE tablename AUTO_INCREMENT = 1
ALTER TABLE table_name AUTO_INCREMENT = 1;
ALTER TABLE tablename AUTO_INCREMENT = 1