设置主键自增,初始值从10开始,每次自增10

为什么是从11开始的?多加了一个1.

CREATE TABLE mytest13
(
id INT PRIMARY KEY AUTO_INCREMENT,
age VARCHAR(10)
)AUTO_INCREMENT=9;
SET auto_increment_increment=10;
INSERT INTO mytest13(age) VALUES('20');
INSERT INTO mytest13(age) VALUES('15');

clipboard.png

阅读 9.5k
4 个回答

你是从10开始,10已经是一个值了,他是在10上递增,第一条数据就是 +1 = 11

1、auto_increment_increment的自增,为下一个跟上一个的间隔为10,也就是11->21->31->41以此类推
2、auto_increment_offset:漂移值,也就是步长

本质的逻辑为 auto_increment_offset + N × auto_increment_increment N表示第几次,从0开始计算

因为自增长的主键是 auto_increment_offset + n * auto-increment-increment 的一个数列,auto_increment_offset默认是 1,所以自增长的值是1,11,21,31....
由于你设置了 auto_increment=10,所以下一个自增 id11

让我们验证一下:

我建了一个一样的表,当前 auto_increment14, 最大 id13

clipboard.png

这个时候我再插入一个自增 id 的数据,你认为 id 会是 23, 24 还是 21

clipboard.png

结论就是, 自增长的 id 的值为 auto_increment_offset + n * auto-increment-increment

初始值你没设,默认就是1了,而你又指定了递增间隔是10,所以新的递增值就是11咯。就是这么简单。

一、首先题主提问的标题会让人误解

初始值从10开始,每次自增10

根据截图反推回去,最开始的auto_increment_%变量应该是这样的↓

clipboard.png

顺便纠正下@eason_li 的解释,这两个变量正确的含义:

auto_increment_increment:列的增量值,这才是步长。
auto_increment_offset:初始值,也称偏移量。

因为题主CREATE TABLE后马上更改了变量SET auto_increment_increment=10;,此时变量应该是这样的↓

clipboard.png
也就是初始值还是1,但每次自增变成了10。也就不是上面有人说的从10开始,然后+1

二、自增列值的计算始终是这样,没错↓

auto_increment_offset + N × auto_increment_increment

但由于更改了其中一个变量,N的范围变成了[1,2,3...]中的正整数
再引用下MySQL官方文档

If either of these variables is changed, and then new rows inserted into a table containing an AUTO_INCREMENT column, the results may seem counterintuitive because the series of AUTO_INCREMENT values is calculated without regard to any values already present in the column, and the next value inserted is the least value in the series that is greater than the maximum existing value in the AUTO_INCREMENT column. The series is calculated like this:
auto_increment_offset + N × auto_increment_increment
where N is a positive integer value in the series [1, 2, 3, ...]

结合一中查出来的变量值代入,自增列的值序列应该是这样的[11,21,31...],由于create table的时候后面还加了个AUTO_INCREMENT=9;那么当前插入的自增列值应该是要大于9,但在自增列的值序列中是最小的,也就是11。
(例如create table的时候如果定义AUTO_INCREMENT=19,那就是要大于19,最小的值就是21了~)

传送门

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题