Mysql实例通过实例认识MySQL中前缀索引的用法
《Mysql实例通过实例认识MySQL中前缀索引的用法》要点: MYSQL数据库今天在测试环境中加一个索引时候发现一警告 MYSQL数据库
root@test 07:57:52>alter table article drop index ind_article_url;
Query OK,144384 rows affected (16.29 sec)
Records: 144384 Duplicates: 0 Warnings: 0
root@test 07:58:40>alter table article add index ind_article_url(url);
Query OK,144384 rows affected,1 warning (19.52 sec)
Records: 144384 Duplicates: 0 Warnings: 0
root@test 07:59:23>show warnings;
+―――+――+―――――――――――――――――――+
| Level | Code | Message |
+―――+――+―――――――――――――――――――+
| Warning | 1071 | Specified key was too long; max key length is 767 bytes |
+―――+――+―――――――――――――――――――+
1 row in set (0.00 sec)
MYSQL数据库用show create table article查看索引以及表结构的信息: MYSQL数据库
`URL` varchar(512) default NULL COMMENT ‘外链url',……
KEY `ind_article_url` (`URL`(383))
…..
DEFAULT CHARSET=gbk
……
drop table test;
create table test(test varchar(767) primary key)charset=latin5;
MYSQL数据库C 成功 MYSQL数据库
drop table test;
create table test(test varchar(768) primary key)charset=latin5;
MYSQL数据库C 错误 MYSQL数据库
ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes
drop table test;
create table test(test varchar(383) primary key)charset=GBK;
MYSQL数据库C 成功 MYSQL数据库
drop table test;
create table test(test varchar(384) primary key)charset=GBK;
MYSQL数据库C 错误 MYSQL数据库
ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes
drop table test;
create table test(test varchar(255) primary key)charset=UTF8;
MYSQL数据库C 成功 MYSQL数据库
drop table test;
create table test(test varchar(256) primary key)charset=UTF8;
MYSQL数据库C 错误 MYSQL数据库
ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes
MYSQL数据库MySQL的varchar索引只支持不超过768个字节 或者 768/2=384个双字节 或者 768/3=256个三字节的字段 MYSQL数据库
root@test 08:10:35>select count(distinct(url))/count(*) from article;
+――――――――――-+
| count(distinct(url))/count(*) |
+――――――――――-+
| 0.0750 |
+――――――――――-+
MYSQL数据库对各种长度的前缀列计算其选择性: MYSQL数据库
root@test 08:16:41>select count(distinct left(url,76))/count(*) url_76,-> count(distinct left(url,77))/count(*) url_77,78))/count(*) url_78,79))/count(*) url_79,80))/count(*) url_80,81))/count(*) url_81,82))/count(*) url_82,83))/count(*) url_83,84))/count(*) url_84,85))/count(*) url_85
-> from article;
+――C+――C+――C+――C+――C+――C+――C+――C+――C+――C+
| url_76 | url_77 | url_78 | url_79 | url_80 | url_81 | url_82 | url_83 | url_84 | url_85 |
+――C+――C+――C+――C+――C+――C+――C+――C+――C+――C+
| 0.0747 | 0.0748 | 0.0749 | 0.0749 | 0.0749 | 0.0749 | 0.0749 | 0.0749 | 0.0749 | 0.0750 |
+――C+――C+――C+――C+――C+――C+――C+――C+――C+――C+
1 row in set (1.82 sec)
MYSQL数据库我们看到选择85的长度的时候,该前缀列的选择性和全列的选择性相当了: MYSQL数据库
root@test 08:49:24>explain select id,url,deleted from article group by url;
+―-+――――-+――――-+――+―――――+――+―――+――+――C+―――――――――――+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+―-+――――-+――――-+――+―――――+――+―――+――+――C+―――――――――――+
| 1 | SIMPLE | article | ALL | NULL | NULL | NULL | NULL | 139844 | Using temporary; Using filesort |
+―-+――――-+――――-+――+―――――+――+―――+――+――C+―――――――――――+
1 row in set (0.00 sec);
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |