1

我正在尝试在 my.cnf 中设置auto_increment_increment = 200001auto_increment_offset = 10000 ,但是当我这样做时,show variable like '%auto%'它给出的最大增量值为 65535。

然后,我创建了一个自动增量值为 200001 的表,并插入了空值。当我这样做select * from table;时,它会给出不适当的结果。

如何将自动增量值设置为更多 65535,如果我在表中插入任何值,如何获得正确的结果。

4

1 回答 1

3

看起来 auto_increment_increment 限制为 65535:

http://dev.mysql.com/doc/refman/5.0/en/replication-options-master.html#sysvar_auto_increment_increment

于 2012-09-29T12:19:15.347 回答