According to spencer7593, the auto-increment value has reached the maximum value for the data type
I just came up with a problem.
use the SHOW CREATE TABLE tablename command ; , I get
table name { `id` int(11) NOT NULL AUTO_INCREMENT, ...... }ENGINE=InnoDB AUTO_INCREMENT=100000000000 DEFAULT CHARSET=utf8
You will see that the length of 100,000,000,000 is 12, beyond the limit of 11.
kiddingmu
source share