这篇文章主要为大家详细介绍了MySQL性能分析及explain的使用说明,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编小韵来看看吧!
1.使用explain语句去查看分析结果代码如下:
where key1=....
where key1=1 and key2=2
where key1=3 and key3=3 and key2=2
代码如下:
mysql> explain select * from event;
+—-+————-+——-+——+—————+——+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——+—————+——+———+——+——+——-+
| 1 | SIMPLE | event | ALL | NULL | NULL | NULL | NULL | 13 | |
+—-+————-+——-+——+—————+——+———+——+——+——-+
1 row in set (0.00 sec)
本文来自:http://www.q1010.com/177/10361-0.html
注:关于MySQL性能分析及explain的使用说明的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:MYSQL
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。