MySQL 修改自增长auto_increment步长
在做Mysql主主库时,需要修改Mysql的默认自增长步长。
修改mysql的的自增步长方法有两种:
通过修改@@auto_increment_increment变量的值
SET @@auto_increment_increment=2;
上面的sql语句会影响到数据库中所有有自增长字段的自增步长。
在创建表或者修改表时改动数据表的自增长设置
CREATE TABLE table (...) AUTO_INCREMENT = n;
alter table <table name> auto_increment=2