I'm comparing a few different approaches to getting some data in mysql, directly at the console, using the SQL_NO_CACHE option to make sure mysql keeps running the full query every time. Mysql gives me the execution time back in seconds, to two decimal places. I'd really like to get the result back in milliseconds (ideally to one or two decimal places), to get a better idea of improvements (or lack of). Is there an option i can set in mysql to achieve this?

thanks, max

link|improve this question

51% accept rate
Yes, time in seconds seems silly for most uses since "most uses" means web sites - and their queries should be under a second! – Xeoncross Sep 5 '10 at 1:06
feedback

1 Answer

The answer is to enable the mysql profiler and then check it after you run your queries.

mysql> set profiling=1;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.