Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL query analyzer

Tags:

mysql

Is there a tool to analyze query more thoroughly than EXPLAIN allows? Something like SQL Server Management Studio.

like image 520
synapse Avatar asked Apr 08 '11 13:04

synapse


2 Answers

JetProfiler has a good GUI for explaining queries, and letting you tweak the query in real time.

like image 142
Tony Gutierrez Avatar answered Oct 14 '22 00:10

Tony Gutierrez


sqlyog is a best gui tool for query. And there is Query Profiler which gives these informations when you execute a query:

  • Explain result.
  • Explain Extended.
  • Change Of Status Variables Due ToExecution Of Query.
  • SHOW PROFILE Result.

enter image description here

like image 20
Jignesh Avatar answered Oct 14 '22 00:10

Jignesh