标签:mysql clip where sql tool hid targe overflow 时间
mysql可以通过profiling命令查看到执行查询SQL消耗的时间。
默认情况下,mysql是关闭profiling的,命令:
| @@profiling |
+-------------------+
| 0 |
+-------------------+
说明:
0:表示profiling功能是关闭;
1:表示打开的。
可以通过命令打开/关闭profiling功能。
打开命令:
select * from employee limit 1,10;
可以使用profiling命令查看执行这条SQL消耗的时间:
+----------------+-----------------+-------------------------------------------------------------+
| Query_ID | Duration | Query |
+----------------+-----------------+--------------------------------------------------------------+
| 1 | 0.00083225 | select * from employee limit 1,10 |
+----------------+-----------------+--------------------------------------------------------------+
1 row in set ( 0.00 sec)
使用explain来分析是否命中索引
标签:mysql clip where sql tool hid targe overflow 时间
原文地址:https://www.cnblogs.com/musings/p/8902439.html