Rumah > Artikel > pangkalan data > 如何查看mysql语句的运行时间
查看mysql语句运行时间的方法:首先执行【set profiling = 1;】命令开启query profiler工具;然后执行【show profiles;】命令即可查看sql语句运行时间。
Query Profiler是MYSQL自带的一种query诊断分析工具,它可以定位出一条SQL语句执行的各种资源消耗情况,比如CPU,IO等,以及该SQL执行所耗费的时间等。
(推荐教程:mysql教程)
首先查看profile是否开启,数据库默认是不开启的。
查看是否开启方法:
show variables like "%pro%";
设置开启方法:
set profiling = 1;
然后执行show profiles;即可查看所有sql的总的执行时间。
相关推荐:php培训
Atas ialah kandungan terperinci 如何查看mysql语句的运行时间. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!