September 2012
M T W T F S S
« Jul   Jul »
 12
3456789
10111213141516
17181920212223
24252627282930

MySQL Visual Explain

If you are tied of reading the old “text-only” output of MySQL Explain, then you will enjoy the new MySQL Visual Explain feature of MySQL Workbench (works with MySQL 5.6+).

Before:

mysql> explain select max(DepDelayMinutes), carrier, dayofweek from ontime.ontime_2010 where dayofweek = 7 group by Carrier, dayofweek\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: ontime_2010
type: ref
possible_keys: DayOfWeek,dw_carr,covered
key: covered
key_len: 2
ref: const
rows: 1337314
Extra: Using where; Using index
1 row in set (0.00 sec)

After:

MySQL Visual Explain

How to test:

  1. Download and Install MySQL 5.6
  2. Download and Install MySQL Workbench
  3. Enjoy

Comments are closed.