时间:2021-07-01 10:21:17 帮助过:16人阅读
首先执行命令,查看配置,如下:
show variables like '%increment%';
如果:
auto_increment_increment=2
(免费学习视频教程推荐:mysql视频教程)
则执行:
set @@global.auto_increment_increment = 1; set @@auto_increment_increment =1;
如果:
auto_increment_offset=2
则执行:
set @@global.auto_increment_offset =1; set @@auto_increment_offset =1;
相关文章教程推荐:mysql教程
以上就是mysql实现自增步长调整的详细内容,更多请关注Gxlcms其它相关文章!