explain 一般用于分析sql.  
如下

[SQL] 纯文本查看 复制代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
drop table if exists test1;
CREATE TABLE test1 (
    id INT NOT NULL primary key  auto_increment, -- 自动递增
    username varchar(5) not null -- 用户名
)
ENGINE=innodb ;
 
insert into test1 (username) values (concat('test',rand()));
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;
insert into test1 (username)   select username from test1;

先创建一部分数据. 然后执行

[SQL] 纯文本查看 复制代码
1
explain select * from test1;

结果

explain select username from test1;
+----+-------------+-------+------+---------------+------+---------+------+---------+-------+
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows    | Extra |
+----+-------------+-------+------+---------------+------+---------+------+---------+-------+
|  1 | SIMPLE      | test1 | ALL  | NULL          | NULL | NULL    | NULL | 4187248 | NULL  |
+----+-------------+-------+------+---------------+------+---------+------+---------+-------+
1 row in set (0.00 sec)

再执行

[SQL] 纯文本查看 复制代码
1
explain select username from test1 where username = 'test';

+----+-------------+-------+------+---------------+------+---------+------+---------+-------------+
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows    | Extra       |
+----+-------------+-------+------+---------------+------+---------+------+---------+-------------+
|  1 | SIMPLE      | test1 | ALL  | NULL          | NULL | NULL    | NULL | 4187248 | Using where |
+----+-------------+-------+------+---------------+------+---------+------+---------+-------------+
1 row in set (0.00 sec)

接下来再给表的username创建一个索引

[SQL] 纯文本查看 复制代码
1
ALTER TABLE `test`.`test1` ADD INDEX `i_name` (`username`) comment '';

过程 会比较 卡.需要等待几秒到几十秒.取决于机器. 也可以少插入几条数据. 然后再执行刚才的两条语句

mysql> explain select username from test1 where username = 'test';
+----+-------------+-------+------+---------------+--------+---------+-------+------+--------------------------+
| id | select_type | table | type | possible_keys | key    | key_len | ref   | rows | Extra                    |
+----+-------------+-------+------+---------------+--------+---------+-------+------+--------------------------+
|  1 | SIMPLE      | test1 | ref  | i_name        | i_name | 7       | const |    1 | Using where; Using index |
+----+-------------+-------+------+---------------+--------+---------+-------+------+--------------------------+
1 row in set (0.00 sec)

mysql> explain select username from test1;
+----+-------------+-------+-------+---------------+--------+---------+------+---------+-------------+
| id | select_type | table | type  | possible_keys | key    | key_len | ref  | rows    | Extra       |
+----+-------------+-------+-------+---------------+--------+---------+------+---------+-------------+
|  1 | SIMPLE      | test1 | index | NULL          | i_name | 7       | NULL | 4187248 | Using index |
+----+-------------+-------+-------+---------------+--------+---------+------+---------+-------------+
1 row in set (0.00 sec)

发现 type 变了   key也变了.  extra也不一样了. 对比一下就了解情况

其中,

type=const表示通过索引一次就找到了;

key=primary的话,表示使用了主键;

type=all,表示为全表扫描;

key=null表示没用到索引。
type=ref,因为这时认为是多个匹配行,在联合查询中,一般为REF。

经过分析后就可以判断出哪些字段需要建 索引,哪些条件可以优化等. 以及条数等

system > const > eq_ref > ref > fulltext > ref_or_null > index_merge > unique_subquery > index_subquery > range > index > A

最新文章

  1. Entity Framework Extended Library
  2. MySQL 导入数据
  3. iOS Swift 3 open
  4. 探索c#之不可变数据类型
  5. redis命令总结
  6. canvas保存为data:image扩展功能的实现
  7. 详解android.mk-2016.01.18
  8. LR中错误代号为27796的解决方法
  9. LDPY Ghost Win7 64位 纯净自选版 V5.0
  10. 在DropDownList里显示多级分类
  11. java vector 和ArrayList的区别
  12. Python爬虫(十一)_案例:使用正则表达式的爬虫
  13. 笔记:Hibernate 框架配置说明
  14. 您必须知道的 Git 分支开发规范
  15. 选择语句--switch
  16. Linux中环境变量中文件执行顺序
  17. psdTohtml
  18. Flume Channel Selector
  19. List基础操作
  20. ural1989 单点更新+字符串hash

热门文章

  1. Myeclipse 2014破解教程
  2. 对抗栈帧地址随机化/ASLR的两种思路和一些技巧
  3. 平衡二叉树(AVL树)
  4. 关于安卓手机的牛逼软件termux使用
  5. 利用Tkinter和matplotlib两种方式画饼状图
  6. react-native多图选择、图片裁剪(支持ad/ios图片个数控制)
  7. 07.十分钟学会tomcat数据源
  8. Navi.Soft31.产品.登录器(永久免费)
  9. sublime text3添加右键打开的操作
  10. [转载] zookeeper应用——集中配置管理系统的实现