How do I change the amount auto_increment fields in MySQL increment by from the default (1) to n?
auto_increment
You can change it using ALTER TABLE:
ALTER TABLE table AUTO_INCREMENT = n;
Or if you want to do set it from start:
CREATE TABLE table (...) AUTO_INCREMENT = n;