How do I change the amount auto_increment fields in MySQL increment by from the default (1) to n?
auto_increment
You can also use ALTER SEQUENCE sequence_name INCREMENT BY N where N is the new incremnent value.