i just wondered, if there is an elegant way of automatically resetting the autoincrement of a mysql table to the lowest value according to the present content.
example:
mytable:
1 content of row 1
2 content of row 2
3 content of row 3
4 content of row 4
5 content of row 5
now the autoincrement will be at 6
but before i insert new contents, i delete row 3,4 and 5. the content would look like this:
1 content of row 1
2 content of row 2
the autoincrement would still be at 6.
and this is the issue.
i would like the autoincrement to be at 3, because it is the lowest possible value according to the inserted IDs.
the would prevent extremely large numbers, if the autoincrement would grow "infinitely" and get out of range of a 12 digits long integer.
thanks for any suggestion!
18446744073709551615. I am guessing that should suffice for most use cases. So your concern about growing to infinity should not be a factor in how you design your app to work. – Mike Brant Dec 12 '12 at 19:15</confused user>(i.e.: don't recycle id's if you can avoid it) – Wrikken Dec 12 '12 at 19:31