MySQL SQL 查询分析和查询成本工具和技术

发布于 2024-07-09 09:38:53 字数 150 浏览 7 评论 0原文

在使用 Microsoft SQL Server 时,我发现 SQL Server Profiler 和估计执行计划(在 Management Studio 中可用)非常有用,可以在开发和生产系统监控期间优化查询。

MySQL 是否有类似的工具(开源或商业)或技术?

Working with Microsoft SQL Server I found extremely useful SQL Server Profiler and Estimated Execution Plan (available in Management Studio) to optimize queries during development and production system monitoring.

Are there similar tools (open source or commercial) or techniques available for MySQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

压抑⊿情绪 2024-07-16 09:38:53

您可以使用 EXPLAIN< 获取有关查询如何执行的信息/代码>

例如:

EXPLAIN SELECT * FROM foo INNER JOIN bar WHERE foo.index = 1 AND bar.foo_id = foo.id

然后它会告诉您将使用哪些索引、表的连接顺序、期望从每个表中选择多少行等等。

You can get information about how a query will execute using EXPLAIN.

For example:

EXPLAIN SELECT * FROM foo INNER JOIN bar WHERE foo.index = 1 AND bar.foo_id = foo.id

It will then tell you which indexes will be used, what order the tables will be joined in, how many rows it expects to select from each table and so on.

迷鸟归林 2024-07-16 09:38:53

正如 RoBorg 所建议的,您可以使用 EXPLAIN 来显示 MySQL 将如何执行查询的详细信息。 我发现这篇文章更有用,因为它告诉我您如何解释结果并改进您的 SQL。

这些关于查询缓存配置 和 使用 ALTER TABLE 添加和删除索引。

As RoBorg suggests, you can use EXPLAIN to show the details of how MySQL will execute your query. I found this article more useful, as it tells you how to interpret the results and improve your SQL.

Also helpful are these articles on query cache configuration and using ALTER TABLE to add and remove indexes.

成熟的代价 2024-07-16 09:38:53

You can have a look at http://dev.mysql.com/doc/refman/5.5/en/server-status-variables.html#statvar_Last_query_cost too. This will help knowing if the query is better or not, in terms of CPU cycles or table scans.

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