how to restart auto_increment in mysql code example
Example 1: mysql reset auto increment
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