欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql实现自增步长调整

程序员文章站 2022-03-09 15:35:55
...

mysql实现自增步长调整

首先执行命令,查看配置,如下:

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实现自增步长调整的详细内容,更多请关注其它相关文章!