登陆MariaDB,并进入相应的数据库
登陆MariaDB:mysql -uroot -pxxxxxx
进入对应的数据库: use test1
查看对应的表是否有报错
check table xxxx;
返回如下报错:
修复报错
repair table xxxx;
重新查看表状态
check table xxxx;
返回已修复:
登陆MariaDB:mysql -uroot -pxxxxxx
进入对应的数据库: use test1
check table xxxx;
返回如下报错:
repair table xxxx;
重新查看表状态
check table xxxx;
返回已修复:
>