如何在不启用 slow_query_log 的情况下重现单个查询的输出?我正在寻找 rows_examined。
问问题
24 次
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 回答