web-dev-qa-db-ja.com

mysqlの実行時間

Mysqlで最後に実行されたクエリの実行時間を取得する方法はありますか?

22
mck89

mysqlには 組み込みプロファイラー があります。 set profiling=1;を発行し、show profiles;を使用して実行時間を取得することで、プロファイリングを有効にできます。

33
soulmerge

PHP ..を使用する場合、クエリの前と後にmicrotime()を使用して、クエリの実行にかかった時間を計算できます。

$sql_query='SELECT * FROM table';
$msc=microtime(true);
$mysql_query($sql_query);
$msc=microtime(true)-$msc;
echo $msc.' seconds'; // in seconds
echo ($msc*1000).' milliseconds'; // in millseconds
8
Sabeen Malik

これを試して...

mysql_query("SET profiling = 1;");
if (mysql_errno()) { die( "ERROR ".mysql_errno($link) . ": " . mysql_error($link) ); }

/* It goes without saying that this is your actual query that you want to measure the execution time of */
$query="SELECT some_field_name FROM some_table_name";
$result = mysql_query($query);
if (mysql_errno()) { die( "ERROR ".mysql_errno($link) . ": " . mysql_error($link) ); }

$exec_time_result=mysql_query("SELECT query_id, SUM(duration) FROM information_schema.profiling GROUP BY query_id ORDER BY query_id DESC LIMIT 1;");
if (mysql_errno()) { die( "ERROR ".mysql_errno($link) . ": " . mysql_error($link) ); }
$exec_time_row = mysql_fetch_array($exec_time_result);

echo "<p>Query executed in ".$exec_time_row[1].' seconds';
6
G-J