Possible Duplicate:
How to reuse auto_increment values?
I have a table which has an auto-increment ID-column as it's primary key, but am running into the 'problem' that whenever a key is deleted, that creates a gap. This is of course not a problem as such, but it doesn't look very neat. Is there an easy way to get MySQL to use the first available unused ID-number, instead of the 'next' number in the sequence? I hope my question makes sense.