View Single Post

  #2 (permalink)  
Old 11-23-2005
Markus Popp
 
Posts: n/a
Default 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


Reply With Quote