解释一下获取查询时间?
我尝试使用命令 Explain
获取 mySql 数据库的查询时间,但它总是返回 0.00 秒,我是否误解了 mySql 中的Explain 命令用法?
以下是我的命令:
mysql> explain select * from table;
0.00 sec
mysql> select * from table;
15 sec
为什么解释不会返回与我使用相同命令相同的查询时间结果?
请帮忙
I trying to use command Explain
to obtain the query time of my mySql database, however it return always 0.00sec, am i misunderstand the Explain command usage in mySql?
Below is my command:
mysql> explain select * from table;
0.00 sec
mysql> select * from table;
15 sec
why the explain wouldn't return the same query time result as i using the same command?
Pls help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为解释是完全不同的。
它从不运行查询。但只是告诉它如何运行。
Because Explain is completely different.
It never runs a query. But just tells how it would be run.