解释一下获取查询时间?

发布于 2024-09-16 01:06:00 字数 317 浏览 5 评论 0原文

我尝试使用命令 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野生奥特曼 2024-09-23 01:06:00

因为解释是完全不同的。
它从不运行查询。但只是告诉它如何运行。

Because Explain is completely different.
It never runs a query. But just tells how it would be run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文