时间:2021-07-01 10:21:17 帮助过:7人阅读
-- 表mysql> select * from city;+----+----------+| id | city |+----+----------+| 1 | ChengDu || 2 | NeiJiang || 3 | HangZhou |+----+----------+-- 创建10个字节的前缀索引mysql> create index cityname on city (city(10));Query OK, 0 rows affected (0.21 sec)Records: 0 Duplicates: 0 Warnings: 0-- 查询mysql> explain select * from city where city = 'ChengDu'/G*************************** 1. row *************************** id: 1 select_type: SIMPLE table: city type: refpossible_keys: cityname key: cityname key_len: 33 ref: const rows: 1 Extra: Using where1 row in set (0.04 sec)-- 删除索引mysql> drop index cityname on city;Query OK, 0 rows affected (0.48 sec)Records: 0 Duplicates: 0 Warnings: 0
1. 只用于使用=或<=>操作符的等式比较。
2. 优化器不能使用HASH索引来加速ORDER BY操作。
3. MySQL不能确定在两个值之间大约有多少行。如果将MyISAM的表改为HASH索引的MEMORY表,会 影响一些查询的执行效率。
4. 只能使用整个关键字来搜索一行。
具体索引相关的细节可参考:
http://dev.mysql.com/doc/refman/5.7/en/optimization-indexes.html
不吝指正。