目录
索引虽可以提升数据库查询的速度,但并不是任何情况下都适合创建索引。因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进行索引查询,然后定位到具体的数据行,如果索引使用不当,反而会增加数据库的负担。
最基本的索引类型,没有唯一性之类的限制.
(1)直接创建索引
create index 索引名 on 表名(列名[ ( length) ]);
(2)修改表方式创建
alter table 表名 add index 索引名 (列名);
(3)创建表的时候指定索引
create table 表名 ( 字段1 数据类型,字段2 数据类型,[...],index 索引名 (列名));
与普通索引类似,但区别是唯一索引列的每个值都唯一。唯一索引允许有空值(注意和主键不同)。如果是用组合索引创建,则列值的组合必须唯一。添加唯一键将自动创建唯一索引。
(1)直接创建唯一索引
create unique index 索引名 on 表名(列名);
(2)修改表方式创建
alter table 表名 add unique 索引名 (列名);
(3)创建表的时候指定
create table 表名 (字段1 数据类型,字段2 数据类型,[...],unique 索引名 (列名));
是一种特殊的唯一索引,必须指定为==‘‘PRIMARY KEY’’==。一个表只能有一个主键,不允许有空值。 添加主键将自动创建主键索引。
(1)创建表的时候指定 11.30
create table 表名 ([...],primary key (列名));
(2)修改表方式创建
alter table 表名 add primary key (列名);
(单列索引与多列索引):可以是单列上创建的索引,也可以是在多列上创建的索引。需要满足最左原则,因为select语句的where条件是依次从左往右执行的,所以在使用select语句查询时,where条件使用的字段顺序必须和组合索引中的排序一致,否则索引将不会生效。
(1)直接创建索引
- create index 索引名 on 表名(字段1, 字段2, ....);
- select 字段列表 from 表名 where 字段1=XX and 字段2=XX .... ;
- #查询语句使用 and 做逻辑运算符时,字段顺序要与创建多列索引的字段顺序一致(要满足最左原则)
(2)修改表方式创建
- alter table 表名 add index 索引名(字段1, 字段2, ....);
- select 字段列表 from 表名 where 字段1=XX and 字段2=XX .... ;
- #查询语句使用 and 做逻辑运算符时,字段顺序要与创建多列索引的字段顺序一致(要满足最左原则)
(fulltext):适合在进行模糊查询的时候使用,可用于在一篇文章中检索文本信息。在 MySQL5.6版本以前FULLTEXT索引仅可用于MyISAM引擎,在5.6版本之后innodb引擎也支持fulltext索引。全文索引可以在char、vaechar或者text类型的列上创建。
(1)直接创建索引
create fulltext index 索引名 on 表名 (列名);
(2)修改表方式创建
alter table 表名 add fulltext 索引名 (列名);
(3)创建表的时候指定索引
- create table 表名 (字段1 数据类型,[...],fulltext 索引名 (列名));
- #数据类型可以为char、varchar或者text
(4)使用全文索引查询
select * from 表名 where match(列名) against('查询内容');
(5)中文全文索引查询
- vim /etcmy.cfn
- ngram_token_size=2 #指定查询的单词的最小字数
- syetemctl restart mysqld
-
- create table xy106 (id int, name varchar(20), age int, sex vhar(2), remark text, fulltext (remark) with parser ngram); #创建表
- insert into xy106 values (1, 'zhang', 25, '男', '足球,篮球,台球');
- insert into xy106 values (2, 'san', 26, '男', '吃饭,足球,乒乓球‘);
- insert into xy106 values (3, 'li', 26, '男', '篮球,羽毛球,乒乓球');
- insert into xy106 values (4, 'si', 26, '男', '篮球,乒乓球,足球');
- #添加四行数据
- select 字段列表 from 表名 where match(字段) against('单词'); #默认使用自然语言模式
- select 字段列表 from 表名 where match(字段) against('+单词1 -单词2' IN BOOLEAN MODE); #使用BOOLEAN模式,必须包含"单词1",且不能包含"单词2"
- select 字段列表 from 表名 where match(字段) against('+单词1 +单词2' IN BOOLEAN MODE); #使用BOOLEAN模式,必须同时包含"单词1"和"单词2"
- select 字段列表 from 表名 where match(字段) against('单词1 单词2' IN BOOLEAN MODE); #使用BOOLEAN模式,要么包含"单词1",要么包含"单词2"
- show create table 表名;
- show index from 表名;
- show index from 表名\G; #纵向显示索引信息
- show keys from 表名;
- show keys from 表名\G;
(1)直接删除索引
drop index 索引名 on 表名;
(2)修改表方式删除索引
alter table 表名 drop index 索引名;
(3)删除主键索引
alter table 表名 drop primary key;
1.普通索引创建
- create index 索引名 on 表名(列名[ ( length) ]);
- alter table 表名 add index 索引名 (列名);
- create table 表名 ( 字段1 数据类型,字段2 数据类型,[...],index 索引名 (列名));
2.唯一索引创建
- create unique index 索引名 on 表名(列名);
- alter table 表名 add unique 索引名 (列名);
- create table 表名 (字段1 数据类型,字段2 数据类型,[...],unique 索引名 (列名));
3.主键索引创建
- alter table 表名 add primary key (列名);
- create table 表名 ([...],primary key (列名));
4.组合索引创建
- create index 索引名 on 表名(字段1, 字段2, ....);
- alter table 表名 add index 索引名(字段1, 字段2, ....);
- select 字段列表 from 表名 where 字段1=XX and 字段2=XX .... ;
- #查询语句使用 and 做逻辑运算符时,字段顺序要与创建多列索引的字段顺序一致(要满足最左原则)
5.全文索引创建
- create fulltext index 索引名 on 表名 (列名);
- alter table 表名 add fulltext 索引名 (列名);
- create table 表名 (字段1 数据类型,[...],fulltext 索引名 (列名));
- #数据类型可以为char、varchar或者text
7.查看索引
- show create table 表名;
- show index from 表名;
- show index from 表名\G; #纵向显示索引信息
- show keys from 表名;
- show keys from 表名\G;
8.删除索引
- drop index 索引名 on 表名;
- alter table 表名 drop index 索引名;
- alter table 表名 drop primary key;