Reputation: 9926
Re: MySQL's global configuration option auto_increment_increment.
Other than
How/Why have you seen auto_increment_increment
used in practice?
Upvotes: 2
Views: 1539
Reputation: 29536
It just provide control, it's not used widely, it will allow if i need keys to be like this 10, 20, 30, etc
So i can insert records in between those records, like now i can insert 11,12,13 records (later) in between 10 and 20, which might be helpful in rarest case
Upvotes: 3