mySQL auto increment problem: Duplicate entry '4294967295' for key 1

后端 未结 7 864
-上瘾入骨i
-上瘾入骨i 2021-01-25 02:30

I have a table of emails.

The last record in there for an auto increment id is 3780, which is a legit record. Any new record I now insert is being inserted right there.

相关标签:
7条回答
  • 2021-01-25 03:17

    Just change it to a BIGINT and you can create "some" extra new records. A couple of hundred billion... ;)

    0 讨论(0)
提交回复
热议问题