gpt4 book ai didi

mysql - 在不启用 slow_query_log 的情况下为单个查询重现 slow_query_log 输出

转载 作者:行者123 更新时间:2023-11-30 23:06:17 25 4
gpt4 key购买 nike

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

最佳答案

格式不会完全相同,但如果您只想知道查询的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)

关于mysql - 在不启用 slow_query_log 的情况下为单个查询重现 slow_query_log 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21758025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com