Automatic addition is always performed in steps of 1, but after deleting a row, the identifier is not freed.
The following auto-increment identifier will be stored in the information schema database in your MySQL environment. This is always +1, and when a line is deleted, the identifier between them will be absent. So, if the first is 1 and the second (in your opinion) is 5, then 2,3,4 were deleted in the process.
Run this query to find out and replace the last 2 values ββin :;
SELECT AUTO_INCREMENT from `information_schema`.`TABLES` WHERE TABLE_NAME = '<<YOUR TABLE NAME HERE>>' AND TABLE_SCHEMA = '<< YOUR DATABASE NAME HERE >>'
source share