Reset AUTO_INCREMENT after Delete in MySQL
Sometimes the most recent entries get deleted from our table. After the rows are deleted, try to insert some rows. We can observe a gap in the number_values of the auto_increment column, which is ok in many cases. However, many times the requirement is to reset the auto_increment to maintain the sequence. Well, there is […]
Reset AUTO_INCREMENT after Delete in MySQL Read More »