1

我想通过C API从查询中获取崩溃的表列表。

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

我只想通过查询获取表名,比如

select table_name from some_specific_db where status=crashed

有人知道吗?

4

1 回答 1

0
show table status where comment like '%crash%';
于 2017-11-20T13:03:01.757 回答