Failed to read auto-increment value from storage engine, Error Number: 1467

后端 未结 9 893
[愿得一人]
[愿得一人] 2020-12-16 02:54

When inserting data in mysql i get this error:

Error Number: 1467 Failed to read auto-increment value from storage engine

I don\'t now how to solve this i

9条回答
  •  庸人自扰
    2020-12-16 03:30

    I received this message too. My problem was that my table was not sorted by index. Try using the following:

    ALTER TABLE  `YOUR-TABLE` ORDER BY  `index` ;
    

提交回复
热议问题