1

如何在不启用 slow_query_log 的情况下重现单个查询的输出?我正在寻找 rows_examined。

4

1 回答 1

0

格式不会完全相同,但如果您只想知道Rows_examined查询的格式,您可以通过运行查询EXPLAIN并查看rows输出中的计数来获得它。

mysql> explain select *
    -> from your_table
    -> where name like '%a%'\G
*************************** 1. row ***************************
           id: 1
  select_type: SIMPLE
        table: your_table
         type: ALL
possible_keys: NULL
          key: NULL
      key_len: NULL
          ref: NULL
         rows: 131831
        Extra: Using where
1 row in set (0.00 sec)
于 2014-02-13T15:31:14.887 回答