Well, it's the following I have a MySQL table, where it contains a table designated by users.
In this table, it contains a column named ID, where it is AutoIncrement and type INT.
What I want to know, if it is possible to do in some configuration is:
Whenever I enter the first result the id is = 1, but if you delete and re-insert another result, the ID is no longer 1 and becomes 2.
How can I always be the smallest id that has not been "busy"?
Thank you.