您的位置:首页 > 数据库 > MySQL

”MySQL索引“学习总结

2016-06-05 23:47 471 查看

learn by doing 是最快的学习方式。在百度外卖研发中心,我每天工作接触数据库方面最多的就是“索引”,另外面试官在面试时也一定会考察到索引。

Part 1, Explain语法

The EXPLAIN statement provides information about the execution plan for a SELECT statement.



Here is the explanation of some Output Columns:

ColumnMeaning
idSelect identifier
select_typeselect type
tabletable for the output row
typejoin type(联接类型)
possible_keypossible indexes to choosen
keyindex actually choosen
key_lenlength of choosen key
refcolummns compared to the index(列比较的索引)
rowsEstimate of rows to be examined(估计被检查的行)
extraadditional information
部分列的含义解释如下:

Select Type

The type of SELECT, which can be any of those shown in the following table.(可以是如下显示的任何一种类型)

select_type ValueMeaning
SIMPLESimple select, not using UNION or subqueries.
PRIMARY用到了主键的查询
UNIONSecond or later SELECT statement in a UNION
SUBQUERYFirst SELECT in subquery

type

The join type(联接类型).

The type column of EXPLAIN output describes how tables are joined. The following exceprpt(节选) list describes the join types, ordered from the best type to the worst:(从最快的联接类型到最差的)

1. const

The table has at most(至多) one matching row, which is read at the start of the query. Because there is only one row, values from the column in this row can be regarded as(视为) constants(常量) by the rest of(剩下的) the optimizer.

2. eq_ref

One row is read from this table for each combination of rows from the previous tables. Other than the system and const types, this is the best possible join type. It is used when all parts of an index are used by the join and the index is a PRIMARY KEY or UNIQUE NOT NULL index.(对于每个来自于前面的表的行组合,从该表中读取一行。这可能是最好的联接类型,除了const类型。它用在一个索引的所有部分被联接使用并且索引是UNIQUE或PRIMARY KEY。)

3. ref

All rows with matching index values are read from this table for each combination of rows from the previous tables. ref is used if the join uses only a leftmost prefix(最左前缀) of the key or if the key is not a PRIMARY KEY or UNIQUE index (in other words, if the join cannot select a single row based on the key value).

eq_ref 与 ref 的辨析

" for each combination of rows from the previous table " eq_ref 和 ref 都会 " read from this table ",但是也存在一点区别。如下表所示。

join typedifferences
eq_refone row
refAll rows with matching index values
eq_ref 是从本表读一行;ref 会从本表读所有命中索引的行。

4. index

The index join type is the same as ALL(全表扫描), except that the index tree is scanned. This occurs two ways:

If the index is a covering index for the queries and can be used to satisfy all data required from the table, only the index tree is scanned. In this case, the Extra column says
Using index
.

A full table scan is performed using reads from the index to look up data rows in index order.
Uses index
does not appear in the Extra column.

当查询只使用作为单索引一部分的列时,MySQL可以使用该联接类型。

5. ALL

A full table scan is done for each combination of rows from the previous tables. 如果该表是第一个没标记
const
的表,这通常不好,并且通常在其它情况下会很差.

possible_keys

The possible_keys column indicates which indexes MySQL can choose from use to find the rows in this table. Note that this column is totally independent of the order of the tables as displayed in the output from EXPLAIN. That means that some of the keys in possible_keys might not be usable in practice with the generated table order.

key

The key column indicates the key (index) that MySQL actually decided to use. If MySQL decides to use one of the possible_keys indexes to look up rows, that index is listed as the key value.

It is possible that key will name an index that is not present in the possible_keys value. This can happen if none of the possible_keys indexes are suitable for looking up rows, but all the columns selected by the query are columns of some other index. That is, the named index covers the selected columns, so although it is not used to determine which rows to retrieve, an index scan is more efficient than a data row scan.

ref

The ref column shows which columns or constants are compared to the index named in the key column to select rows from the table.

Extra

This column contains additional information about how MySQL resolves the query.

The Extra column of
EXPLAIN
output contains additional information about how MySQL resolves the query. The following list(节选) explains the values that can appear in this column. If you want to make your queries as fast as possible, look out for Extra values of
Using filesort
and
Using temporary
.

1.Using filesort

MySQL must do an extra pass to find out how to retrieve(检索) the rows in sorted order. The sort is done by going through all rows according to the join type and storing(储存) the sort key and pointer to the row for all rows that match the
WHERE
clause. The keys then are sorted and the rows are retrieved in sorted order.

2.Using index

The column information is retrieved from the table using only information in the index tree without having to do an additional seek to read the actual row. This strategy can be used when the query uses only columns that are part of a single index.

3.Using filesort

MySQL must do an extra pass to find out how to retrieve the rows in sorted order. The sort is done by going through all rows according to the join type and storing the sort key and pointer to the row for all rows that match the WHERE clause. The keys then are sorted and the rows are retrieved in sorted order.

4.Using temporary

To resolve the query, MySQL needs to create a temporary table to hold the result. This typically happens if the query contains GROUP BY and ORDER BY clauses that list columns differently.

5.Using where

A
WHERE
clause is used to restrict which rows to match against the next table or send to the client. Unless you specifically intend to fetch or examine all rows from the table, you may have something wrong in your query if the Extra value is not Using where and the table join type is ALL or index. Even if you are using an index for all parts of a WHERE clause, you may see Using where if the column can be NULL.

part 2, 索引命中原则

单一索引

关于单一索引的命中原则比较简单。有如下一张表



执行如下查询:

select * from test where name='name.1000'

然后,对这条查询执行一下
explain
,结果如下图所示。



由于
key
列为
NULL
可以得知,这条查询并没有使用到索引。

组合索引

1.全索引匹配

有另一张表,如下图所示。



执行如下查询:

select * from test2 where key1=12 and key2=378 and key3=29

explain
的结果如下图所示。



2.最左前缀原则

为了证明最左前缀原则,需要展示另外一张表,如下图所示。



执行如下查询:

select * from test3 where key3='c++'

让我们看看这次查询的执行情况。
explain
的结果如下图所示。


key3 是 normal_key 索引的一部分,但在这次查询中,normal_key 并不能派上用场,这是因为 mysql 组合索引数据结构(基于 B+ Tree )的原因。

3.最左前缀的特例——索引的副作用

让我们还是关注在 test2 这张表上,其表结构如下所示。



让我们执行 explain 一条 SQL,结果如下所示。



key
这一栏显示该条查询用到了 normal_key 这一索引,但是执行时间并不理想(280ms)。其原因在《构建高性能web站点》一书中已经讲过了:这条查询在并不适合自己的索引上苦苦寻找。

对于这种情况——组合索引的副作用——书上建议加入
order by id
下表是加入
order by id
子句之后执行时间的对比。

Using
order by id
Not Using
310ms350ms

4. 当 type 是 index 时,Extra 何时会显示 Using Index

在上面 mysql 手册的摘录中,出现了如下一句话,让我没能读懂。


A full table scan is performed using reads from the index to look up data rows in index order.
Uses index
does not appear in the Extra column.


借助如下这张图并结合上面第3节(最左前缀的特例——索引的副作用)的实例,我大致明白了含义。



对于
select * from test2 where key3=29 order by id
这条语句,mysql 一定会全表扫描的,并且会按照 id 这一(主键)索引来排序,所以在
Extra
这一栏中,
Using Index
并没有出现。

参考文献 MySQL 5.7 Reference Manual

(End)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: