MySql索引详解-各种索引的定义与区别和应用

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS MySQL,高可用系列 2核4GB
简介: 什么是索引?索引的作用,有无索引的区别。

什么是索引?索引的作用,有无索引的区别。


一、索引基础:增删改查



以下场景既适用于单值索引也适用于复合索引


1.新增索引的几种方式


只有主键索引不适用create index 其他均是适用的。

-- 方式一:
create index idx_building_id on tb_mdm_unit(building_id) using btree comment '楼栋id';
-- 方式二:
alter table tb_mdm_unit add index idx_building_id(building_id) using btree comment '楼栋id';
-- 方式三:这里也可以在声明列时直接声明
drop table if exists testTable;
create table testTable(
id tinyint  comment 'id',
column1 tinyint not null comment '列1',
column2 BIGINT not null comment '列2',
column3 MEDIUMINT not null comment '列3',
column4 DATETIME not null comment '列4',
column5 date not null comment '列5',
column6 TIMESTAMP not null comment '列6',
column7 year not null comment '列7',
column8 GEOMETRY not null comment '列8',
column9 varchar(20)  not null comment '列9',
-- PRIMARY key(id) using BTREE comment '主键',
PRIMARY key(id,column1) using BTREE comment '复合主键',
UNIQUE key colu1_idx(column1) using BTREE comment '唯一索引',
UNIQUE key colu1_cdx(column1,column2) using BTREE comment '复合唯一索引',
index colu3_idx(column3) using BTREE comment '普通索引1',
index dolu3_cdx(column3,column4) using BTREE comment '复合普通索引1',
fulltext colu9_idx(column9) comment '全文索引',
SPATIAL index colu8_idx(column8) comment '空间索引'
);


2.删除索引的几种方式


drop index 这种删除方式不适用于主键索引,其他索引均可适用。

drop index idx_building_id on tb_mdm_unit;
alter table tb_mdm_unit drop index idx_building_id;


3.修改索引的几种方式


下面的修改只有在mysql8中才可以使用,是用来将索引标识未可见不可见的(查看可见不可见可以使用show index from table)。索引不可见以后,条件使用索引字段将不走索引。如果是想将单列索引修改成复合索引,这种只能是删了重建才可以。

-- 修改索引可见(mysql8.0以后支持)
alter table tb_mdm_unit alter index idx_building_id visible;
-- 修改索引不可见(mysql8.0以后支持)
alter table tb_mdm_unit alter index idx_building_id invisible;


4.查询索引的几种方式


-- 方式一:查看建表语句,此时可以看到
show create table tb_mdm_floor;
-- 方式二:查看表的所有索引
show index from tb_mdm_floor;
-- 方式三:查看所有列(会标明列上的索引)
show columns from tb_mdm_floor;


二、索引的分类



从功能上对索引进行划分的话,可以划分为以下几种索引。


1.主键索引


非null且唯一,可以为将任意字段类型设置为主键,不过对于blob/text添加主键时必须指明主键长度(其实就是前缀索引),因为blob存储的是二进制文件,text存储的是文本,都比较长,如果使用原始信息做主键,会导致主键过长,从而影响查询效率,下面是测试使用各个字段做主键的sql。


主键使用切记不要更新主键,更新会导致BTree的重新计算主键索引位置,很耗时。一般不应该操作主键的更新。

下面是验证各种数据类型是否可以作为主键的sql

drop table if exists testTable;
create table testTable(
id integer comment '主键',
column1 tinyint not null comment '列1',
column2 BIGINT not null comment '列2',
column3 MEDIUMINT not null comment '列3',
column4 DATETIME not null comment '列4',
column5 date not null comment '列5',
column6 TIMESTAMP not null comment '列6',
column7 year not null comment '列7',
column8 char not null comment '列8',
column9 varchar(20)  not null comment '列9',
column10 blob not null comment '列11',
column11 text not null comment '列12',
column12 enum('one','two','three') not null comment '列13',
column13 set('one','two')  comment '列14'
);
alter table testTable add primary key(id) comment '测试主键'; alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column1) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column2) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column3) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column4) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column5) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column6) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column7) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column8) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column9) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column10(10)) comment '测试主键';alter table testTable drop PRIMARY key ; -- blob 只能添加前缀索引类型的主键
alter table testTable add primary key(column11(10)) comment '测试主键';alter table testTable drop PRIMARY key ; -- text 只能添加前缀索引类型的主键
alter table testTable add primary key(column12) comment '测试主键';alter table testTable drop PRIMARY key ;
alter table testTable add primary key(column13) comment '测试主键';alter table testTable drop PRIMARY key ;


主键的新增

-- 方式一:修改表添加
alter table testTable add primary key(column13) comment '测试主键';
-- 方式二:建表字段上指定
drop table if exists testTable;
create table testTable(
id tinyint PRIMARY key auto_increment comment '测试主键'
);
-- 方式三: 建表末尾指定
drop table if exists testTable;
create table testTable(
id tinyint  comment 'id',
PRIMARY key(id) using BTREE comment '测试主键'
);


删除主键

alter table testTable drop PRIMARY key ;


主键的查看,使用索引的通用查看方法即可(第一节中)。此外主键可以是复合索引,主键也可以是前缀索引。如下举例:

alter table testTable add PRIMARY key(id,column1) using btree comment '复合主键索引';
alter table testTable add PRIMARY key(column9(10)) using btree comment '前缀主键索引';


2.唯一索引


非null,可以使用在任何类型的字段上。没有特别要求,都可以使用,可以建立复合唯一索引,前缀唯一索引(这个使用需要慎重),其他的和主键索引的创建删除都没有任何的区别,这里就不重复列举了。


3.普通索引


对字段类型没有要求,可以创建在任何数据类型上,用以提升查询效率。普通索引同样可以是复合索引,也可以是前缀索引,使用上便是第一节的列举情况。


4.复合索引


其实就是普通索引的变种,支持多列共同构建一个索引。使用参考第一节,这里不重复列举了。


5.全文索引


全文索引功能类似于ES,可以根据关键字进行快速查找,在不使用全文索引的情况下,模糊匹配查询like ‘%张三’,这种会导致索引失效。因此mysql也是在引入了全文索引fulltext,用以支持模糊查询的快速查找,全文索引和模糊查询的效率不是一个量级的。==在MySql5.6以前只有MYISAM支持fulltext,在5.6及以后INNODB和MYISAM均支持全文索引了,且全文索引只能建立在字符串类型上,如char、varchar、text等数据类型。==这里介绍全文索引的基础用法,不深入探讨。


全文索引的新增:

-- 方式一:建表时添加全文索引
drop table if exists testTable;
create table testTable(
id tinyint  comment 'id',
column1 tinyint not null comment '列1',
column8 text not null  comment '经纬度列',
column9 varchar(50) not null comment '列9',
fulltext index colu9_idx(column9) comment '全文索引',
fulltext index colu8_idx(column8,column9) comment '复合全文索引'
);
-- 方式二:使用create index 添加
create fulltext index colu9_fullindex on testTable(column9) comment '全文索引';
-- 方式三:使用alter table 添加
alter table testTable add fulltext index colu8_idx(column8,column9) comment '复合全文索引';


全文索引的删除查看和普通索引没有任何区别,这里不重复说了,来看下全文索引的使用吧:

MATCH (col1,col2,...) AGAINST (expr [search_modifier])
search_modifier:
  {
       IN NATURAL LANGUAGE MODE
     | IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION
     | IN BOOLEAN MODE
     | WITH QUERY EXPANSION
  }


使用举例如下:

-- 插入数据
insert into testTable values
(1,0,'11','zhangsan'),
(2,0,'11','zhangsanlisi'),
(3,0,'11','zhangsanlisiwangwu'),
(4,0,'11','zhangsanlisiwangwuzhaoli'),
(5,0,'11','zhangsanlisiwangwuzhaoliqianqizhangsan');
-- 使用布尔模式进行模糊匹配查找
select * from testTable where MATCH(column9) against('zhang*' in boolean mode);


上面的执行截图:


e32e120e8a774a6c9011b7c14b01f553.png



6.空间索引


空间索引只能针对空间类型的字段进行建立,mysql中的空间索引和全文索引实现都不是BTREE,所以即使是INNODB也存在多种不同的索引数据结构。mysql的空间类型和对应的索引使用范围不广。


mysql中的空间数据类型有4种,分别是GEOMETRY、POINT、LINESTRING、POLYGON。创建空间索引的列,必须将其声明为NOT NULL。


空间索引的建立:

-- 方式一
create spatial index colu8_idx on testTable(column8) comment '空间索引';
-- 方式二
alter table testTable add spatial index colu8_idx(column8) comment '空间索引';
-- 方式三
drop table if exists testTable;
create table testTable(
id tinyint  comment 'id',
column1 tinyint not null comment '列1',
column2 BIGINT not null comment '列2',
column3 MEDIUMINT not null comment '列3',
column4 DATETIME not null comment '列4',
column5 date not null comment '列5',
column6 TIMESTAMP not null comment '列6',
column7 year not null comment '列7',
column8 GEOMETRY not null comment '列8',
column9 varchar(20)  not null comment '列9',
-- PRIMARY key(id) using BTREE comment '主键',
PRIMARY key(id,column1) using BTREE comment '复合主键',
UNIQUE key colu1_idx(column1) using BTREE comment '唯一索引',
UNIQUE key colu1_cdx(column1,column2) using BTREE comment '复合唯一索引',
index colu3_idx(column3) using BTREE comment '普通索引1',
index dolu3_cdx(column3,column4) using BTREE comment '复合普通索引1',
fulltext colu9_idx(column9) comment '全文索引',
SPATIAL index colu8_idx(column8) comment '空间索引'
);


空间索引的删除和查看等都和普通索引没有什么区别,这里就不重复写入了。


三、总结



这里介绍的都是基础的索引的增删改查,和一些索引使用的案例以及注意事项。我们常用的其实还是主键索引、唯一索引、普通索引,复合索引、前缀索引(字符串或者二进制类型建立普通索引时可以建立前缀索引),其他的全文和空间索引其实是不常用的。这里列出来作为了解吧。


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
14天前
|
缓存 关系型数据库 MySQL
MySQL索引策略与查询性能调优实战
在实际应用中,需要根据具体的业务需求和查询模式,综合运用索引策略和查询性能调优方法,不断地测试和优化,以提高MySQL数据库的查询性能。
|
2月前
|
存储 关系型数据库 MySQL
阿里面试:为什么要索引?什么是MySQL索引?底层结构是什么?
尼恩是一位资深架构师,他在自己的读者交流群中分享了关于MySQL索引的重要知识点。索引是帮助MySQL高效获取数据的数据结构,主要作用包括显著提升查询速度、降低磁盘I/O次数、优化排序与分组操作以及提升复杂查询的性能。MySQL支持多种索引类型,如主键索引、唯一索引、普通索引、全文索引和空间数据索引。索引的底层数据结构主要是B+树,它能够有效支持范围查询和顺序遍历,同时保持高效的插入、删除和查找性能。尼恩还强调了索引的优缺点,并提供了多个面试题及其解答,帮助读者在面试中脱颖而出。相关资料可在公众号【技术自由圈】获取。
|
2月前
|
存储 关系型数据库 MySQL
MySQL在企业内部应用场景有哪些
【10月更文挑战第17天】MySQL在企业内部应用场景有哪些
47 0
|
2月前
|
存储 关系型数据库 MySQL
介绍一下MySQL的一些应用场景
【10月更文挑战第17天】介绍一下MySQL的一些应用场景
181 0
|
22天前
|
存储 SQL 关系型数据库
mysql 的ReLog和BinLog区别
MySQL中的重做日志(Redo Log)和二进制日志(Binary Log)是两种重要的日志系统。重做日志主要用于保证事务的持久性和原子性,通过记录数据页的物理修改信息来恢复未提交的事务更改。二进制日志则记录了数据库的所有逻辑变化操作,用于数据的复制、恢复和审计。两者在写入时机、存储方式、配置参数和使用范围上有所不同,共同确保了数据库的稳定性和可靠性。
|
27天前
|
监控 关系型数据库 MySQL
数据库优化:MySQL索引策略与查询性能调优实战
【10月更文挑战第27天】本文深入探讨了MySQL的索引策略和查询性能调优技巧。通过介绍B-Tree索引、哈希索引和全文索引等不同类型,以及如何创建和维护索引,结合实战案例分析查询执行计划,帮助读者掌握提升查询性能的方法。定期优化索引和调整查询语句是提高数据库性能的关键。
150 1
|
28天前
|
监控 关系型数据库 MySQL
数据库优化:MySQL索引策略与查询性能调优实战
【10月更文挑战第26天】数据库作为现代应用系统的核心组件,其性能优化至关重要。本文主要探讨MySQL的索引策略与查询性能调优。通过合理创建索引(如B-Tree、复合索引)和优化查询语句(如使用EXPLAIN、优化分页查询),可以显著提升数据库的响应速度和稳定性。实践中还需定期审查慢查询日志,持续优化性能。
63 0
|
18天前
|
SQL 关系型数据库 MySQL
12 PHP配置数据库MySQL
路老师分享了PHP操作MySQL数据库的方法,包括安装并连接MySQL服务器、选择数据库、执行SQL语句(如插入、更新、删除和查询),以及将结果集返回到数组。通过具体示例代码,详细介绍了每一步的操作流程,帮助读者快速入门PHP与MySQL的交互。
32 1
|
20天前
|
SQL 关系型数据库 MySQL
go语言数据库中mysql驱动安装
【11月更文挑战第2天】
35 4
|
2月前
|
存储 关系型数据库 MySQL
Mysql(4)—数据库索引
数据库索引是用于提高数据检索效率的数据结构,类似于书籍中的索引。它允许用户快速找到数据,而无需扫描整个表。MySQL中的索引可以显著提升查询速度,使数据库操作更加高效。索引的发展经历了从无索引、简单索引到B-树、哈希索引、位图索引、全文索引等多个阶段。
64 3
Mysql(4)—数据库索引