自增起始值
`desc t10;`
查看表字段及意义
`show creat table t10;`
查看表创建规则
alter table t10 AUTO_INCREMENT=10;
修改起始值
自增步长
基于会话级别:
show session variables like 'auto_inc%';
查看全局变量
`set session increment_increment=2;`
设置会话步长
`set session increment_offset=10;`
设置会话起始值
基于全局级别:
`show globle variables like 'auto_inc%';`
查看全局变量
`set globle increment_increment=2;`
设置会话步长
`set globle increment_offset=10;`
设置会话起始值