MySQL的查詢計劃中ken_len的值計算

本文首先介紹了MySQL的查詢計劃中ken_len的含義;而後介紹了key_len的計算方法;最後經過一個僞造的例子,來講明如何經過key_len來查看聯合索引有多少列被使用。css

key_len的含義

在MySQL中,能夠經過explain查看SQL語句所走的路徑,以下所示:mysql

  1. mysql> create table t(a int primary key, b int not null, c int not null, index(b));
     Query OK, 0 rows affected (0.01 sec)
     mysql> explain select b from t ;
     +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
     | id | select_type | table | type  | possible_keys | key  | key_len | ref  | rows | Extra       |
     +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
     |  1 | SIMPLE      | t     | index | NULL          | b    | 4       | NULL |    1 | Using index |
     +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
     1 row in set (0.00 sec)

 

其中, key_len表示使用的索引長度 ,是以字節爲單位。在上面的例子中,因爲int型佔用4個字節,而索引中只包含了1列,因此,key_len是4。


下面是聯合索引的狀況:git

  1. mysql> alter table t add index ix(b, c);
    Query OK, 0 rows affected (0.03 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    mysql> explain select b, c from t ;
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    | id | select_type | table | type  | possible_keys | key  | key_len | ref  | rows | Extra       |
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    |  1 | SIMPLE      | t     | index | NULL          | ix   | 8       | NULL |    1 | Using index |
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    1 row in set (0.00 sec)

 

聯合索引ix包含了2列,而且都使用到了,因此,這裏ken_len是8。sql

到這裏,咱們已經能夠理解key_len的含義了,彷佛已經沒有什麼可講的了,可是,MySQL中key_len的計算還有不少須要注意的地方。spa

例如,咱們將b這一列的NOT NULL約束去掉,而後ken_len就和咱們預期不同了,以下所示:code

  1. mysql> alter table t modify b int;
    Query OK, 0 rows affected (0.01 sec)
    Records: 0  Duplicates: 0  Warnings: 0
     
    mysql> explain select b from t;
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    | id | select_type | table | type  | possible_keys | key  | key_len | ref  | rows | Extra       |
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    |  1 | SIMPLE      | t     | index | NULL          | b    | 5       | NULL |    1 | Using index |
    +----+-------------+-------+-------+---------------+------+---------+------+------+-------------+
    1 row in set (0.00 sec)

 

 

MySQL中key_len計算規則

MySQL中,key_len的計算規則以下:索引

  1. 若是列能夠爲空,則在數據類型佔用字節的基礎上加1,如int型,不能爲空key_len爲4,能夠爲空key_len爲5
  2. 若是列是變長的,則在數據列所佔字節的基數上再加2,如varbinary(10),不能爲空,則key_len爲10  + 2 ,能夠爲空則key_len爲10+2+1
  3. 若是是字符型,則還須要考慮字符集,如某列的定義是varchar(10),且是utf8,不能爲空,則key_len爲10 * 3 + 2,能夠爲空則key_len爲10*3+2+1

此外,decimal列的計算方法與上面同樣,若是能夠爲空,則在數據類型佔用字節的基礎上加1,可是,decimal自己所佔用字節數,計算就比較複雜。ci

根據官方文檔能夠知道,decimal定義爲decimal(M,D),其中,M是總的位數,D是小數點後保留的位數。小數點前與小數點後的數字分開存儲,且以9位數爲1組,用4個字節保存,若是低於9位數,須要的字節數以下:文檔

  1. Leftover Digits Number of Bytes
  2. -----------------------------
  3. |0 |0 |
  4. |1-2 |1 |
  5. |3-4 |2 |
  6. |5-6 |3 |
  7. |7-9 |4 |
  8. -----------------------------

 

 

例如:it

  • decimal(20,6)=> 小數點左邊14位,小數點右邊6位 => 小數點左邊分組爲5 + 9,須要3個字節+4個字節存儲,小數點一個分組,須要3個字節存儲 => 總共須要10個字節
  • decimal(18,9)=> 小數點左邊9位數,小數點右邊9位數 => 分別使用4個字節存儲 => 共須要 8個字節
  • decimal(18,2)=> 小數點左邊16位數,小數點右邊2位數 => 分組爲7 + 9,須要8個字節存儲,小數點右邊1個字節存儲 => 共須要9個字節

經過key_len分析聯合索引

以下所示,咱們定義了一個表t,表t包含a、b、c、d共4列:

  1. mysql> show create table t\G
    *************************** 1. row ***************************
           Table: t
    Create Table: CREATE TABLE `t` (
      `a` int(11) NOT NULL,
      `b` int(11) DEFAULT NULL,
      `c` int(11) DEFAULT NULL,
      `d` int(11) DEFAULT NULL,
      PRIMARY KEY (`a`),
      KEY `ix_x` (`b`,`d`,`c`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8
    1 row in set (0.00 sec)

 

 

如今要執行SQL語句以下:
select a from t where b = 5 and d = 10 order by c;

 

假設咱們有一個索引ix_x(b,d,c),經過explain獲得以下輸出:

  1. mysql> explain select a from t where b = 5 and d = 10 order by c;
    +----+-------------+-------+------+---------------+------+---------+-------------+------+--------------------------+
    | id | select_type | table | type | possible_keys | key  | key_len | ref         | rows | Extra                    |
    +----+-------------+-------+------+---------------+------+---------+-------------+------+--------------------------+
    |  1 | SIMPLE      | t     | ref  | ix_x          | ix_x | 10      | const,const |    1 | Using where; Using index |
    +----+-------------+-------+------+---------------+------+---------+-------------+------+--------------------------+
    1 row in set (0.00 sec)

 

 

能夠看到,查詢語句使用了聯合索引中的b和d兩列來過濾數據。



若是咱們定義的聯合索引不是`ix_x(b,d,c)`,而是`ix_x(b, c, d)`,經過explain獲得的輸入以下:

  1. mysql> alter table t drop index ix_x;
    mysql> alter table t add index ix_x(b, c, d);
    mysql> explain select a from t where b = 5 and d = 10 order by c;
    +----+-------------+-------+------+---------------+------+---------+-------+------+--------------------------+
    | id | select_type | table | type | possible_keys | key  | key_len | ref   | rows | Extra                    |
    +----+-------------+-------+------+---------------+------+---------+-------+------+--------------------------+
    |  1 | SIMPLE      | t     | ref  | ix_x          | ix_x | 5       | const |    2 | Using where; Using index |
    +----+-------------+-------+------+---------------+------+---------+-------+------+--------------------------+
    1 row in set (0.00 sec)

 

key_len爲5,也就是說,只用到了聯合索引中的第一列,能夠看到,雖然聯合索引包含了咱們要查詢的全部列,可是,因爲定義的順序問題,SQL語句並不可以充分利用索引。
相關文章
相關標籤/搜索