文档首页
MySQL 8.4 参考手册
相关文档 下载本手册
PDF (US Ltr) - 39.9Mb
PDF (A4) - 40.0Mb
手册页 (TGZ) - 258.5Kb
手册页 (Zip) - 365.5Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 参考手册  /  ...  /  statements_with_full_table_scans 和 x$statements_with_full_table_scans 视图

30.4.3.37 statements_with_full_table_scans 和 x$statements_with_full_table_scans 视图

这些视图显示执行过全表扫描的规范化语句。默认情况下,行按全表扫描所占时间的百分比降序排列,以及总延迟降序排列。

statements_with_full_table_scansx$statements_with_full_table_scans 视图包含以下列

  • query

    规范化语句字符串。

  • db

    语句的默认数据库,或者如果没有则为 NULL

  • exec_count

    语句执行的总次数。

  • total_latency

    语句的计时语句事件的总等待时间。

  • no_index_used_count

    未使用索引扫描表的总次数。

  • no_good_index_used_count

    未使用良好索引扫描表的总次数。

  • no_index_used_pct

    未使用索引扫描表的百分比。

  • rows_sent

    从表中返回的行总数。

  • rows_examined

    为表从存储引擎读取的行总数。

  • rows_sent_avg

    从表中返回的平均行数。

  • rows_examined_avg

    为表从存储引擎读取的平均行数。

  • first_seen

    首次看到语句的时间。

  • last_seen

    最近看到语句的时间。

  • digest

    语句摘要。