溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL單列索引和聯(lián)合索引的用法

發(fā)布時間:2021-08-06 19:13:36 來源:億速云 閱讀:228 作者:chen 欄目:MySQL數(shù)據(jù)庫

本篇內(nèi)容主要講解“MySQL單列索引和聯(lián)合索引的用法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“MySQL單列索引和聯(lián)合索引的用法”吧!

本文通過一個案例,介紹優(yōu)化器對單列索引和聯(lián)合索引的選擇。

order表的ord_seq字段上有2個索引,單列索引(order_seq)和聯(lián)合索引(order_seq,order_type)

MySQL > explain select * from `order` where order_seq = 1502131212577;
+----+-------------+-------+------------+------+-------------------------------+------------+---------+-------+------+----------+-------+
| id | select_type | table | partitions | type | possible_keys                 | key        | key_len | ref   | rows | filtered | Extra |
+----+-------------+-------+------------+------+-------------------------------+------------+---------+-------+------+----------+-------+
|  1 | SIMPLE      | order | NULL       | ref  | idx_ordseq,idx_ordseq_ordtype | idx_ordseq | 8       | const |    1 |   100.00 | NULL  |
+----+-------------+-------+------------+------+-------------------------------+------------+---------+-------+------+----------+-------+

可以看到優(yōu)化器選擇了單列索引idx_ordseq(order_seq),而不是聯(lián)合索引。因為該索引的葉子節(jié)點包含單個鍵值,所以理論上一個頁可以存放更多的記錄。

如果換種場景:

MySQL > explain select * from `order` where order_seq = 1502131212577 order by order_type desc;
+----+-------------+-------+------------+------+-------------------------------+--------------------+---------+-------+------+----------+-------------+
| id | select_type | table | partitions | type | possible_keys                 | key                | key_len | ref   | rows | filtered | Extra       |
+----+-------------+-------+------------+------+-------------------------------+--------------------+---------+-------+------+----------+-------------+
|  1 | SIMPLE      | order | NULL       | ref  | idx_ordseq,idx_ordseq_ordtype | idx_ordseq_ordtype | 8       | const |    1 |   100.00 | Using where |
+----+-------------+-------+------------+------+-------------------------------+--------------------+---------+-------+------+----------+-------------+
1 row in set, 1 warning (0.00 sec)

where條件字段和排序字段添加聯(lián)合索引,解決了filesort的問題。

到此,相信大家對“MySQL單列索引和聯(lián)合索引的用法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI