Tagged Questions

2
votes
2answers
1k views

How to get the execution time of a MySQL query from PHP?

I execute MySQL queries from PHP and would like to know how time consuming they are. Is there any way to get the execution time of a MySQL query from PHP? I also wonder if the execution time depends ...
2
votes
1answer
633 views

mysql query execution time - can i get this in milliseconds?

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 ...
1
vote
1answer
364 views

Getting the actual (absolute) execution time of the last query in PHP (excluding network latency etc)

I want to get the actual Mysql query execution times while they run in my project so running PHP microtime() before and after and subtracting won't work. When we run a query in command line, the ...
0
votes
1answer
29 views

php mysql server execution time - want to reset after every time a function is called. is it possible?

I'm using a recursive function to do some calculation for every user and reward them for certain condition. Everything was working fine, but now that my user number has increased to something like ...
0
votes
2answers
62 views

Calculating Time of a query php & Mysql

I am trying to calculate the time it takes a query to run using a php script: For example: $sql = "SELECT COUNT(*) FROM `order_items` LEFT JOIN `orders` ON `oi_o_id` = `o_id` WHERE `o_status` = ...
0
votes
3answers
396 views

Running 100+ MySQL Update Queries. Optimization Tips Please :)

I'm working on this game titled "Fortress", located at http://www.joemajewski.com/fortress. Anyways, it's one of those browser-based role-playing games where players build an army and upgrade their ...
0
votes
2answers
889 views

mysql execution time

Is there a way to get the execution time of the last executed query in mysql?
-1
votes
3answers
492 views

mysql query execution time | reduce query

I have a query which let me to change users order. here is my query: update test set orderID = case orderID when (select orderID from ( select * from test where orderID > ( ...
-2
votes
1answer
33 views

MySQL Basics: query execution and case sensitive

I am a newbie to mysql and having some questions on it, Is there any way to find the execution time of any SQL statement in 'ms' approximation using command prompt (any setting to be done pls ...