Possible Duplicate:
What is the MySQL equivalent of PostgreSQL's EXPLAIN ANALYZE
I was wondering if there is a way in mysql to show the actual steps of the execution plan of an executed query.
For instance EXPLAIN SELECT ...
shows what mysql WOULD do, but is there a way to actually execute the query and display the execution plan used in the execution?
I see that postgreSQL provides this functionality via EXPLAIN ANALYZE SELECT...
Is there any equivalent functionality in MySQL?