reset auto increment mysql drop code example
Example 1: mysql reset auto increment value
ALTER TABLE table_name AUTO_INCREMENT = 1;
Example 2: mysql reset auto increment
ALTER TABLE `Table Name` AUTO_INCREMENT = 1;
ALTER TABLE table_name AUTO_INCREMENT = 1;
ALTER TABLE `Table Name` AUTO_INCREMENT = 1;