我们都知道在MySQL中可以通过show status like 'last_query_cost' 来查看查上一个查询的代价,而且它是io_cost和cpu_cost的开销总和,它通常也是我们评价一个查询的执行效率的一个常用指标。
下面是一段英文解释:
The total cost of the last compiled query as computed ...
分类:
数据库 时间:
2015-08-21 13:32:07
阅读次数:
269
开启profile优化SQL语句:set profiling=1;执行SQL语句show profiles;show profile for query 2;//根据query_id 查看某个查询的详细时间耗费SHOW STATUS LIKE 'last_query_cost';//查询上一条语句执...
分类:
数据库 时间:
2014-07-05 21:14:47
阅读次数:
321