我想从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%';