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

后端 未结 9 887
[愿得一人]
[愿得一人] 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:38

    After some searching i found the answer and it solved my problem.

    run this sql query it will fix the problem

     ALTER TABLE `YOUR_TABLE`  AUTO_INCREMENT =1
    

提交回复
热议问题