mysql 自增长键值增量设置

参考文章  MySQL中auto_increment的初值和增量值设置_auto_increment怎么设置_linda公馆的博客-CSDN博客

其中关键语句   

show VARIABLES like '%auto_increment%'
set @@auto_increment_increment=4;
set @@auto_increment_offset=2;

你可能感兴趣的:(mysql)