Possible Duplicate:
How to fill in the “holes” in auto-incremenet fields?
We are currently using auto-increment on a table where entries come and go constantly. The problem with this, is that eventually the auto-increment id becomes huge, as that is how auto-increment works.
We would like to have it always add +1 to the last entry.
For example:
We have 4 entries and id 4 is deleted. Next added entry should get id 4, and not 5.
I am not sure if this has been asked before. But after searching I was only able to find solutions on how to get the next auto-increment number, which is not what I am looking for at all.