MySQL索引基本操作

  • 一、索引
  • 1. 索引概述
  • 1.1 作用
  • 1.2 缺点
  • 2. 创建索引的原则依据
  • 二、索引的分类与创建
  • 1. 普通索引
  • 1.1 直接创建
  • 1.2 修改表方式创建
  • 1.3 创建表的时候指定索引
  • 2. 唯一索引
  • 2.1 直接创建
  • 2.2 修改表方式创建
  • 2.3 创建表的时候指定
  • 3. 主键索引
  • 3.1 创建表的时候指定
  • 3.2 修改表方式创建
  • 4. 组合索引
  • 5. 全文索引
  • 5.1 直接创建
  • 5.2 修改表方式创建
  • 5.3 创建表的时候指定索引
  • 5.4 使用全文索引查询
  • 三、查看索引
  • 四、删除索引
  • 1. 直接删除
  • 2. 修改表方式删除
  • 3. 删除主键索引


一、索引

1. 索引概述

1.1 作用

  • 索引是一个排序的列表,在这个列表中存储着索引的值和包含这个值的数据所在行的物理地址
  • 使用索引后可以不用扫描全表来定位某行的数据,而是先通过索引表找到该行数据对应的物理地址然后访问相应的数据,因此能加快数据库的查询速度
  • 设置了合适的索引之后,数据库利用各种快速定位技术,能够大大加快查询速度,这是创建所有的最主要的原因
  • 通过创建唯一性索引,可以保证数据表中每一行数据的唯一性
  • 可以加快表与表之间的连接,在使用分组和排序时,可大大减少分组和排序的时间

1.2 缺点

  • 索引需要占用额外的磁盘空间
  • 在插入和修改数据时要花费更多的时间,因为索引也要随之变动

2. 创建索引的原则依据

索引虽可以提升数据库查询的速度,但并不是任何情况下都适合创建索引。因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进行索引查询,然后定位到具体的数据行,如果索引使用不当,反而会增加数据库的负担

  • 表的主键、外键必须有索引。因为主键具有唯一性,外键关联的是子表的主键,查询时可以快速定位
  • 记录数超过300行的表应该有索引
  • 经常与其他表进行连接的表
  • 唯一性太差、更新太频繁的字段不适合建立索引
  • 索引应该建在小字段、选择性高的字段上

二、索引的分类与创建

准备工作:建立一个数据表

create database school;
use school;
create table class (id int(5),name varchar(10),cardid varchar(10),phone varchar(11),address varchar(50),remark text);
desc class;

01索引 mysql mysql索引的使用_表名

insert into class values (1,'zs','123','11111','suzhou','this is vip');
insert into class values (3,'ls','1234','55555','beijing','this is normal');
insert into class values (5,'ww','234','22222','nanjing','this is normal');
insert into class values (4,'zl','342','33333','suzhou','this is vip');
insert into class values (2,'qq','12345','44444','shanghai','this is vip');
select * from class;

01索引 mysql mysql索引的使用_表名_02


01索引 mysql mysql索引的使用_表名_03

1. 普通索引

最基本的索引类型,没有唯一性之类的限制

1.1 直接创建

语法
create index 索引名 on 表名 (列名[length]);

(列名[length]):length是可选项。如果忽略 length 的值,则使用整个列的值作为索引。如果指定使用列前的 length 个字符来创建索引,这样有利于减小索引文件的大小
索引名建议以“_index”结尾

create index phone_index on class (phone);
select phone from class;
show create table class;

01索引 mysql mysql索引的使用_表名_04


01索引 mysql mysql索引的使用_mysql_05

1.2 修改表方式创建

alter table 表名 add index 索引名 (列名);
例:alter table class add index id_index (id);
select id from member;

01索引 mysql mysql索引的使用_表名_06

1.3 创建表的时候指定索引

create table 表名 (字段1 字段属性,[...],index 索引名 (列名));
例:create table test(id int(4),name varchar(10),cardid varchar(18),index id_index (id));
show create table test;

01索引 mysql mysql索引的使用_创建表_07

2. 唯一索引

与普通索引类似,但区别是唯一索引列的每个值都唯一
唯一索引允许有空值(注意和主键不同)。如果是用组合索引创建,则列值的组合必须唯一。添加唯一键将自动创建唯一索引

2.1 直接创建

语法
create unique index 索引名 on 表名 (列名);

select * from class;
create unique index address_index on class (address);
create unique index name_index on class (name);
show create table class;

01索引 mysql mysql索引的使用_mysql_08


01索引 mysql mysql索引的使用_主键_09

2.2 修改表方式创建

alter table 表名 add unique 索引名 (列名);
例:alter table class add unique cardid_index (cardid);
show create table class\G

01索引 mysql mysql索引的使用_表名_10

2.3 创建表的时候指定

create table 表名 (字段1 数据类型,[...],unique 索引名 (列名));
例:create table test2 (id int,name varchar(20),unique id_index (id));
show create table test2\G

01索引 mysql mysql索引的使用_创建表_11

3. 主键索引

是一种特殊的唯一索引,必须指定为“PRIMARY KEY”。
一个表只能有一个主键,不允许有空值。 添加主键将自动创建主键索引

3.1 创建表的时候指定

create table 表名 ([...],primary key (列名));

例:create table test1 (id int primary key,name varchar(20));
show create table test1;

01索引 mysql mysql索引的使用_mysql_12

3.2 修改表方式创建

alter table 表名 add primary key (列名);

4. 组合索引

可以是单列上创建的索引,也可以是在多列上创建的索引

create table 表名 (列名1 数据类型,列名2 数据类型,列名3 数据类型,index 索引名 (列名1,列名2,列名3));
select * from 表名 where 列名1='...' and 列名2='...' and 列名3='...';

例:create table test (id int not null,name varchar(20),cardid varchar(10),index index_test (id,name));
show create table test\G

01索引 mysql mysql索引的使用_主键_13

5. 全文索引

适合在进行模糊查询的时候使用,可用于在一篇文章中检索文本信息

5.1 直接创建

create fulltext index remark_index on class (remark);

01索引 mysql mysql索引的使用_表名_14

5.2 修改表方式创建

alter table 表名 add fulltext 索引名 (列名);

5.3 创建表的时候指定索引

create table 表名 (字段1 数据类型,[...],fulltext 索引名 (列名));

数据类型可以为char、varchar或text

5.4 使用全文索引查询

select * from 表名 where match(列名) against('查询内容');
例:select * from class where match(remark) against('this is vip');

01索引 mysql mysql索引的使用_创建表_15

三、查看索引

show index from 表名;
show index from 表名\G; 竖向显示表索引信息
或
show keys from 表名;
show keys from 表名\G;

01索引 mysql mysql索引的使用_mysql_16

四、删除索引

1. 直接删除

drop index 索引名 on 表名;
例:drop index name_index on class;

2. 修改表方式删除

例:alter table class drop index id_index;
show index from class\G

01索引 mysql mysql索引的使用_主键_17

3. 删除主键索引

直接删除主键即可

alter table 表名 drop primary key;