最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

淺談mysql explain中key_len的計算方法

 更新時間:2017年04月05日 11:01:04   投稿:jingxian  
下面小編就為大家?guī)硪黄獪\談mysql explain中key_len的計算方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

mysql的explain命令可以分析sql的性能,其中有一項是key_len(索引的長度)的統(tǒng)計。本文將分析mysql explain中key_len的計算方法。

1、創(chuàng)建測試表及數(shù)據(jù)

CREATE TABLE `member` (
 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
 `name` varchar(20) DEFAULT NULL,
 `age` tinyint(3) unsigned DEFAULT NULL,
 PRIMARY KEY (`id`),
 KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `member` (`id`, `name`, `age`) VALUES (NULL, 'fdipzone', '18'), (NULL, 'jim', '19'), (NULL, 'tom', '19');

2、查看explain

name的字段類型是varchar(20),字符編碼是utf8,一個字符占用3個字節(jié),那么key_len應(yīng)該是 20*3=60。

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref  | rows | Extra         |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE   | member | ref | name     | name | 63   | const |  1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

explain的key_len為63,多出了3。

name字段是允許NULL,把name改為NOT NULL再測試

ALTER TABLE `member` CHANGE `name` `name` VARCHAR(20) NOT NULL;

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref  | rows | Extra         |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE   | member | ref | name     | name | 62   | const |  1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

現(xiàn)在key_len為62,比剛才少了1,但還是多了2。可以確定,字段為NULL會多占用一個字節(jié)。

name字段類型為varchar,屬于變長字段,把varchar改為char再測試

ALTER TABLE `member` CHANGE `name` `name` CHAR(20) NOT NULL;

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref  | rows | Extra         |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE   | member | ref | name     | name | 60   | const |  1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

改為定長字段后,key_len為60,與預(yù)測的一致。

總結(jié):使用變長字段需要額外增加2個字節(jié),使用NULL需要額外增加1個字節(jié),因此對于是索引的字段,最好使用定長和NOT NULL定義,提高性能。

以上這篇淺談mysql explain中key_len的計算方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

嘉鱼县| 即墨市| 板桥市| 滕州市| 铜鼓县| 新余市| 乐东| 湘西| 湘阴县| 白水县| 乐安县| 鱼台县| 徐闻县| 阜阳市| 毕节市| 平邑县| 城口县| 瑞丽市| 自治县| 蒙阴县| 朔州市| 黄大仙区| 武功县| 祁连县| 自贡市| 泗水县| 昆山市| 葵青区| 留坝县| 红安县| 体育| 墨玉县| 宜州市| 江源县| 百色市| 亳州市| 盐山县| 巨野县| 广宗县| 瑞昌市| 亚东县|