mysql語句分析工具explain使用說明

dbasdk發表於2014-12-02

mysql explain使用說明
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| kksns              |
| mytest             |
| mysql              |
+--------------------+
4 rows in set (0.00 sec)

mysql> use mytest;
Database changed

下面,我們使用一個語句來介紹explain
mysql> explain
    -> select distinct d.account,a.server_id from tab_appserver_user a
    -> inner join tab_department_parent b on a.key_id = b.parent_id
    -> inner join tab_department_member c on b.department_id = c.department_id and c.state=1
    -> and c.isdefault=1  inner join tab_user_info d on c.user_id = d.user_id and d.state=1
    -> where a.type=1 
    -> union                  
    -> select distinct b.account,a.server_id from tab_appserver_user a
    -> inner join tab_user_info b on a.key_id = b.user_id and b.state=1
    -> where a.type=0\G;
*************************** 1. row ***************************
           id: 1
  select_type: PRIMARY
        table: a
         type: ALL
possible_keys: NULL
          key: NULL
      key_len: NULL
          ref: NULL
         rows: 31
        Extra: Using where; Using temporary
*************************** 2. row ***************************
           id: 1
  select_type: PRIMARY
        table: b
         type: ref
possible_keys: uix_deparment_parent_parent_id
          key: uix_deparment_parent_parent_id
      key_len: 4
          ref: landray_kk_db.a.key_id
         rows: 6661
        Extra:
*************************** 3. row ***************************
           id: 1
  select_type: PRIMARY
        table: c
         type: ref
possible_keys: department_id,ux_department_member_userid
          key: department_id
      key_len: 5
          ref: landray_kk_db.b.department_id,const
         rows: 12
        Extra: Using where
*************************** 4. row ***************************
           id: 1
  select_type: PRIMARY
        table: d
         type: eq_ref
possible_keys: PRIMARY
          key: PRIMARY
      key_len: 4
          ref: landray_kk_db.c.user_id
         rows: 1
        Extra: Using where
*************************** 5. row ***************************
           id: 2
  select_type: UNION
        table: a
         type: ALL
possible_keys: NULL
          key: NULL
      key_len: NULL
          ref: NULL
         rows: 31
        Extra: Using where; Using temporary
*************************** 6. row ***************************
           id: 2
  select_type: UNION
        table: b       
         type: eq_ref
possible_keys: PRIMARY
          key: PRIMARY
      key_len: 4
          ref: landray_kk_db.a.key_id
         rows: 1
        Extra: Using where
*************************** 7. row ***************************
           id: NULL
  select_type: UNION RESULT
        table:
         type: ALL
possible_keys: NULL
          key: NULL
      key_len: NULL
          ref: NULL
         rows: NULL
        Extra:
7 rows in set (0.00 sec)

ERROR:
No query specified

從上面可以看出,查詢分成兩部份,顯示的順序也基本上是按照上面顯示的順序執行
第1個表使用了全表掃描
第2、3、4個表,使用了相應的索引,並且顯示了掃描的行數
union後的結構也差不多
第1個表也使用了全表查詢
第2個表使用的索引
最後進行union

透過上面的語句,我們可以根據表的情況檢視索引是否合理等

下面我們就explain顯示的各列:
EXPLAIN欄位:

Table:顯示這一行的資料是關於哪張表的
possible_keys:顯示可能應用在這張表中的索引。如果為空,沒有可能的索引。可以為相關的域從WHERE語句中選擇一個合適的語句
key:實際使用的索引。如果為NULL,則沒有使用索引。MYSQL很少會選擇最佳化不足的索引,此時可以在SELECT語句中使用USE INDEX(index)來強制使用一個索引或者用IGNORE INDEX(index)來強制忽略索引
key_len:使用的索引的長度。在不損失精確性的情況下,長度越短越好
ref:顯示索引的哪一列被使用了,如果可能的話,是一個常數
rows:MySQL認為必須檢索的用來返回請求資料的行數
type:這是最重要的欄位之一,顯示查詢使用了何種型別。從最好到最差的連線型別為system、const、eq_reg、ref、range、index和ALL
nsystem、const:可以將查詢的變數轉為常量.  如id=1; id為 主鍵或唯一鍵.
neq_ref:訪問索引,返回某單一行的資料.(通常在聯接時出現,查詢使用的索引為主鍵或惟一鍵)
nref:訪問索引,返回某個值的資料.(可以返回多行) 通常使用=時發生
nrange:這個連線型別使用索引返回一個範圍中的行,比如使用>或 nindex:以索引的順序進行全表掃描,優點是不用排序,缺點是還要全表掃描
ALL:全表掃描,應該儘量避免
Extra:關於MYSQL如何解析查詢的額外資訊,主要有以下幾種
nusing index:只用到索引,可以避免訪問表. 
nusing where:使用到where來過慮資料. 不是所有的where clause都要顯示using where. 如以=方式訪問索引.
nusing tmporary:用到臨時表
nusing filesort:用到額外的排序. (當使用order by v1,而沒用到索引時,就會使用額外的排序)
nrange checked for eache record(index map:N):沒有好的索引

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-1353710/,如需轉載,請註明出處,否則將追究法律責任。

相關文章