当你点开这个文字你就配得上资深狼友的称号!
开始我们的正题
- 新增测试表
CREATE TABLE key_test
(
id
bigint(20) NOT NULL AUTO_INCREMENT,
name
varchar(1111) DEFAULT NULL,
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- 修改自增主键最小值 设置为bigint最大值9223372036854775807(2^63-1)
alter table key_test auto_increment=9223372036854775807; - 插入数据 ;
Duplicate entry ‘9223372036854775807’ for key 'PRIMARY