so i have same problem with this question Auto Increment after delete in MySQL
and according to that answer, and considering for each condition that provided on that answer, i've to say that i must do the auto increment after delete on mysql.
i have table lets say
table : product
fields : id, name
so if i have ids of 16,17,18 and then i deleted id 16, and i make the new one, i want to make the new id was on "16" not on 19. according to that answer
Take a step back and ask "why you need to recycle key values?" Do unsigned INT (or BIGINT) not provide a large enough key space?
i must say that yes, it's possible the fields cant provide large enough key space
what should i do
note: the id on that table its unique and didnt connected to any other table, i just want to avoid if the ids cant provide large enough key space again