How repair corrupt xampp 'mysql.user' table?

前端 未结 7 537
猫巷女王i
猫巷女王i 2020-12-03 04:57

I used Xampp yesterday to create some simple Web-based utility tool. Today I wanted to continue working on it but xampp control panel gave me some weir errors.

This

相关标签:
7条回答
  • 2020-12-03 05:54

    Run these two queries:

    CHECK TABLE `users`
    

    and

    CHECK TABLE `db`
    

    Run the following query for the damaged table

    REPAIR TABLE `users`
    

    and/or

    REPAIR TABLE `db`
    
    0 讨论(0)
提交回复
热议问题