Is there any way to get the estimate cost of executing a query in MySQL?

Posted on

Question :

In PostgreSQL, EXPLAIN or EXPLAIN ANALYZE will show the estimate cost of executing a query. But EXPLAIN in MySQL doesn’t provide this information. How can I get the estimate cost without installation of other tools? I’m using MySQL-5.6.16.

Answer :

There isn’t much out there for MySQL except the following:

Read these carefully, see what you think …

In short

  1. Run your SELECT ... query
  2. SHOW STATUS LIKE 'last_query_cost'
  3. if the answer was 0 rerun the query with
    select SQL_NO_CACHE ... and do step 2 above again

Leave a Reply

Your email address will not be published. Required fields are marked *