我想通过 C API 从查询中获取崩溃的表格列表。
我知道cli中的mysqlcheck --auto-repair --check --all-database
命令和repair table db_name.table_name
,但我无法通过查询找到如何获取崩溃的表名。
我只想通过查询获取表名,例如
select table_name from some_specific_db where status=crashed
有没有人知道这个?
答案 0 :(得分:0)
show table status where comment like '%crash%';