目的:数据库 利用各种快速定位技术,能够大大加快查询速度
总结:提高查询速度,降低IO成本、加快表与表的连接减少分组排序时间。
对于myisam引擎而言,索引文件和数据文件是分离的,索引文件用于保存数据记录的地址,而innode引擎的表数据文件本身就是索引文件
索引虽然可以提升数据库查询的速度,但是并不是任何情况下都适合创建索引,因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进性索引查询,然后定位到具体的数据行,如果索引使用不当,反而还会增加数据库的负担
以上三条总结:①具有唯一性,②被查询的频次较高的字段,③表的记录超过300行以上的,适合创建字段
创建索引的目的本身就是一种mysql优化方式,根据以上创建索引的原则依据,总结一下适合创建索引的字段场景
以下的操作都基于此模板表来进行操作
create database moban;
use moban
create table yun (id int(10),name varchar(10),cardid varchar(18),phone varchar(11),address varchar(50),remark text);
insert into yun values(1,'zhangsan','123','111111','nanjin','this is vip');
insert into yun values(2,'lisi','1234','222222','nanjin','this is novip');
insert into yun values(3,'wangwu','12345','333333','beijing','this is svip');
insert into yun values(4,'zhaoliu','123456','444444','sahnghai','this is ssvip');
insert into yun values(5,'qianqi','1234567','555555','suzhou','this is novip');
格式: create index 索引名 on 表名 (列名[(length)]);
create index phone_index on yun(phone);
select phone from yun;
show create table yun;
alter table yun add index id_index(id);
select id from yun;
show create table yun;
create table text(id int(4) not null,name varchar(10) not null,cardid varchar(18) not null,index id_index(id));
show create table text;
与普通索引类似,但是区别是唯一索引 列的每个值都唯一
唯一索引允许有空值(注意和主键不同)。如果是用组合索引创建,则列表的组合必须唯一,添加唯一键将自动创建唯一索引。
create unique index id_index on test01(id);
#创建唯一性索引
show create table test01;
#查看是否创建索引
格式: alter table 表名 add unique 索引名(列名);
alter table test01 add unique cardid_index(cardid);
show create table test01;
格式: create table 表名 (字段1 数据类型,字段2 数据类型 […],unique 索引 (列名));
create table test(id int(4),name varchar(20),unique id_index(id));
#创建新表test,直接创建唯一键id;
show create table test;
#查看索引
是一种特殊的唯一索引,必须指定为"primary key",一个表只有一个主键,不允许有空值,添加主键将自动创建主键索引。
create table test1(id int primary key,name varchar(20));
#创建表的时候创建主键(系统在创建主键的时候会自动创建索引)
或
create table test2(id int,name varchar(20),primary key(id));
#创建表的时候,加入主键索引,指向id。
show create table test1;
show create table tset2;
#查询表的内容
alter table test2 add primary key(name);
可以是单列上创建的索引,也可以是在多列上创建的索引
对查看的顺序有要求,反过来享受不到索引的快速
create table test01(id int not null,name varchar(20),caridid varchar(20),index index_test(id,name));
#创建一个表,定义字段和组合索引
show create table test01;
查看表的内容
insert into test01 values(1,'zhangsan','123123');
插入一条数据
select * from test01 where name='zhangsan' and id=1;
组合查看数据内容
适合在进行模糊查询的时候使用,可用于在一篇文章中检索文本信息
在mysql5.6版本以前fulltext索引可用于myisam引擎,在5.6版本之后innodb引擎也支持fulltext索引,全文索引可以在char、varchar或text类型的列上创建,每个表只允许有一个全文索引。
select * from test01;
create fulltext index remark_inde on test01(remark);
show create table test01;
alter table test01 add fulltext remark_index (name);
show create table test01;
create table test01(id int(4),name char(10),genter char(2), age int(2),address char(20),fulltext index suoyin_index(address));
show create table test01;
select * from test01 where match(name) against('zhangsan');
或者
select * from test01 where name='lisi';
show index from 表名;
show index from 表明\G;竖向显示表索引信息
show keys from 表名;
show keys from 表名\G;
各字段含义如下:
table | 含义 |
---|---|
Non_unique | 如果索引不能包括重复词,则为 0;如果可以,则为 1。 |
Key_name | 索引的名称。 |
Seq_in_index | 索引中的列序号,从 1 开始。 |
Column_name | 列名称。 |
Collation | 列以什么方式存储在索引中。在 MySQL 中,有值‘A’(升序)或 NULL(无分类)。 |
Cardinality | 索引中唯一值数目的估计值。 |
Sub_part | 如果列只是被部分地编入索引,则为被编入索引的字符的数目。如果整列被编入索引,则为 NULL。 |
Packed | 指示关键字如何被压缩。如果没有被压缩,则为 NULL。 |
Null | 如果列含有 NULL,则含有 YES。如果没有,则该列含有 NO。 |
Index_type | 用过的索引方法(BTREE, FULLTEXT, HASH, RTREE)。 |
Comment | 备注。 |
drop index id_index on test01;
desc test01;
alter table test01 drop index id_index;