Re: Auto Increment increase by 100 at a time?
Hi,
if you use MySQL 5, you could use a trigger to achieve this (e.g. insert the
row and set the new auto_increment value to the next full 100 - don't forget
to lock the table to ensure that no one can insert a value in between).
As far as I know, this isn't supported directly.
Markus
|