The order id is an autoincremented field in the database, so it will increment the id automatically. You can set the autoincrement increment amount for the database like this:
replication-options-master.html#sysvar_auto_increment_increment
You would need to make the call:
SET @@auto_increment_increment=10;
This will change the auto_increment_increment for all tables though, so other tables that have auto_increment set on a column will also increment by 10.


