I have a table full of information corresponding to usernames. Each row has a unique id number starting at 1 and going to 9999. Why is it that when i delete a row and insert a new one, the new row gets inserted above the one I just deleted. In other words if I have rows
38
39
40
And i delete 38, and add another row it becomes
41
39
40
This messes up in my code when try to return some data and I was wondering if this was a common problem.