MySQL Query Analyzer

Is there a tool for analyzing the request in more detail than EXPLAIN allows? Something like SQL Server Management Studio.

+8
mysql
source share
5 answers

JetProfiler has a good graphical interface for explaining requests and allows you to customize the request in real time.

+3
source share

sqlyog is the best gui tool for querying. And there is a Query Profiler that gives this information when executing a query:

  • Explain the result.
  • Explain advanced.
  • Change in state variables due to query execution.
  • SHOW PROFILE Result.

enter image description here

+2
source share

If you are looking for an interface that lets you see which commands are causing errors, check out mysql workbench. However, if you are looking for a tool to tell you which commands slow your query, check this out .

+1
source share

Take a look at the Percona MySQL toolkit . It contains many useful tools, including test queries in large volumes, and not just one at a time, and a tool for graphically displaying query plans.

+1
source share

All Articles