MySQL表被标记为崩溃,如何通过查询得到崩溃的表



我想从C API查询崩溃表列表

我知道mysqlcheck --auto-repair --check --all-database命令和repair table db_name.table_name在cli中,但我不知道如何通过查询获得崩溃的表名。

我只想通过查询获得表名,例如

select table_name from some_specific_db where status=crashed

有人知道这个吗?

show table status where comment like '%crash%';

相关内容

  • 没有找到相关文章

最新更新