How to reset AUTO_INCREMENT id to start counting from 100 again MYSQL 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;