how to make my records start from one again after deletion in mysql code example
Example: how to auto increment id after delete value in php mysql
SET @num := 0;
UPDATE your_table SET id = @num := (@num+1);
ALTER TABLE tableName AUTO_INCREMENT = 1;
/************* OR ***********/
ALTER TABLE table_name AUTO_INCREMENT=1