mysql——索引
Posted 名字真的很急用
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql——索引相关的知识,希望对你有一定的参考价值。
MySQL允许建立索引来加快数据表的查询和排序
索引的概念:
数据库中的索引好比新华字典的音序表,它对数据库表中的一列或多列的值进行排序后的一种结构,其作用就是提高表中数据的查询速度。
普通索引:
普通索引是由key或index定义的索引,它是mysql中的基本索引类型,可以创建在任何数据类型中,其值是否唯一和非空由字段本身的约束条件所决定。
主键索引:
在我们添加主键的时候,就自带一个主键索引。
唯一性索引:
唯一性索引是由UNIQUE定义的索引,该索引所在的字段值必须是唯一的。
全文索引:
全文索引是由FULLTEXT定义的索引,它只能创建在CHAR,VARCHAR,或TEXT类型的字段上,而且,现在只有MyISAM存储引擎支持全文索引。
单列索引:
单列索引指的是表中单个字段上创建的索引,它可以是普通索引,唯一索引或全文索引,只要保证该索引只对应表中一个字段即可。
多列索引:
多列索引指的是在表中多个字段上创建索引,只要在查询条件中使用了这些字段中的第一个索引时,该索引才被使用。例如,在grade表中的id,name,score字段上创建一个多列索引,那么,只要保证查询条件中使用了id字段时,该索引才会被使用。
需要注意的是,虽然索引可以提高数据的查询速度,但索引会占用一定的磁盘空间,并且在创建和维护索引时,其消耗的时间是随着数据量的增加而增加的,因此使用索引时,应该综合考虑索引的优点和缺点。
创建索引
创建表的时候创建索引
create table 表名(
字段名 数据类型 完整的约束条件
[UNIQUE | FULLTEXT|SPATIAL] INDEX | KEY 别名 (字段名1 (长度)ASC|DESC)
)
UNIQUE:可选参数,表示唯一索引
FULLTEXT:可选参数,表示全文索引
SPATIAL:可选参数,表示空间索引
INDEX |KEY:用来表示字段的索引,二选一
别名:可选参数,表示创建索引的名称
字段名1:指定索引对应字段的名称
长度:可选参数,用于表示索引的长度
ASC|DESC:可选参数,表示升序和降序
创建普通索引
create table t1(
name varchar(20),
score float,
index (id)
)
创建唯一性索引
create table t2(
id int not null,
name varchar(20),
score float,
unique index unique_id (id ASC)
);
创建全文索引
create table t3(
id int not null,
name varchar(20) not null,
score float,
fulltext index fulltext_name (name)
)engine=myisam;
创建单列索引
create table t4(
id int not null,
name varchar(20) not null,
score float,
index single_name (name(20))
);
创建多列索引
create table t5(
id int not null,
name varchar(20) not null,
score float,
index multi (id,name(20))
);
使用create index 语句在已经存在的表上创建索引
create [UNIQUE | FULLTEXT|SPATIAL] INDEX 别名 ON 表名(字段名1 (长度)ASC|DESC)
例如:
create table book(
bookid int not null,
bookname varchar(20) not null,
authors varchar(20) not null,
info varchar(255) null,
comment varchar(255) null,
publicyear year not null
);
create index index_id on book(bookid);
create unique index un_id on book(bookid);
create index sing_id on book(comment);
create index mulitidx on book(authors(20),info(20));
使用alter table 语句在已经存在的表上创建索引
alter table 表名 add [UNIQUE | FULLTEXT|SPATIAL] INDEX 别名 (字段名1 (长度)ASC|DESC)
例如:
alter table book add index index_id (bookid);
alter table book add unique unique_idex (bookid);
alter table book add index singleidx (comment(50));
alter table book add index multidx (authors(20),info(20));
删除索引
alter table 表名 drop index 索引名
drop index 索引名 on 表名;
索引的优点和缺点
- 添加索引首先应考虑在 where 和 order by 涉及的列上做添加
- 索引的优点
- 大大的提高了查询速度
- 可以显著的减少查询中分组和排序的时间
- 索引的缺点
- 创建索引和维护索引需要时间,而且数据量越大时间越长
- 当对表中的数据进行增加、修改、删除的时候,索引也会同时进行维护的,降低了数据的维护速度
以上是关于mysql——索引的主要内容,如果未能解决你的问题,请参考以下文章
javascript UV Index Monitor App订阅PubNub并显示UV索引值。博文的代码片段。在这里查看项目:https:// githu
c_cpp UV Index Indicator订阅PubNub并使用颜色显示UV索引值。博文的代码片段。在这里查看项目:https:/