赞
踩
1)索引需要占用额外的磁盘空间。
2)在插入和修改数据时要花费更多的时间、消耗更多性能,因为索引也要随之变动。
索引虽可以提升数据库查询的速度,但并不是任何情况下都适合创建索引。因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进行索引查询,然后定位到具体的数据行,如果索引使用不当,反而会增加数据库的负担。
先创建一个数据表member
create table member(id int(10) ,name varchar(10) ,cardid int(18) ,phone int(11) ,address varchar(50),remark text);
CREATE INDEX 索引名 ON 表名 (列名(length));
- create index name_index on member(name); #以name字段创建普通索引
-
- create index cardid_index on member(cardid(4)); #指定cardid字段值的前4个字符做普通索引的值
- ALTER TABLE 表名 ADD INDEX 索引名(列名);
-
- 示例:
- ALTER TABLE member ADD INDEX phone_index(phone); #以phone字段创建普通索引
- CREATE TABLE 表名(字段1数据类型,字段2数据类型[,...],INDEX 索引名 (列名));
-
- 示例:
- create table member2(id int(10) ,name varchar(10) ,cardid int(18), phone int(11) ,address varchar(50),remark text,INDEX name_index(name));
- 方法一:show create table 表名;
-
- 方法二:show index from 表名; #可以加\G 纵向展示
-
- 方法三:show keys from 表名; #可以加\G 纵向展示
- drop index name_index on member; #直接删除索引
-
-
- alter table member drop index phone_index; #以修改表的方式删除索引
唯一索引:与普通索引类似,但区别是唯一索引列的每个值都唯一。 唯一索引 允许有空值(注意和主键不同)。如果是用组合索引创建,则列值的组合必须唯一。添加唯一键将自动创建唯一索引。
创建唯一键或者创建唯一索引都可实现。
- CREATE UNIQUE INDEX 索引名 ON 表名(字段名);
-
- 示例:
- create unique index card_index on member(cardid);
- ALTER TABLE 表名 ADD UNIQUE 索引名(字段名);
-
- 示例:
- alter table member add unique phone_index(phone);
- CREATE TABLE 表名(字段1 数据类型,字段2 数据类型[...],UNIQUE 索引名(字段名));
-
- 示例:
- create table member3(id int(10) ,name varchar(10) ,cardid int(18) ,phone int(11) ,address varchar(50),remark text, unique phone_index(phone));
- CREATE TABLE 表名(字段1 数据类型,字段2 数据类型[...],unique key(字段名));
-
- CREATE TABLE 表名(字段1 数据类型 unique key,字段2 数据类型[...]);
-
- ALTER TABLE 表名 ADD unique key(字段);
主键索引是一种特殊的唯一索引,必须指定为“PRIMARY KEY”。一个表只能有一个主键,不允许有空值。 添加主键将自动创建主键索引。
- create table 表名(字段1 XXX, 字段2 XXX, ...primary key(字段));
-
- create table 表名(字段1 XXX primary key, ...); #将主键作为字段1的属性
-
-
- 示例:
- create table room(id int(10),name varchar(10),primary key(id));
-
- create table room2(id int(10) primary key,name varchar(10));
- ALTER TABLE 表名 add primary key(字段名);
-
-
- 示例:
- ALTER TABLE member add primary key(id); #将id字段添加为主键
组合索引(单列索引与多列索引):可以是单列上创建的索引,也可以是在多列上创建的索引。
需要满足最左原则,因为select 语句的where条件是依次从左往右执行的,所以在使用select 语句查询时where 条件使用的字段顺序必须和组合索引中的排序一致,否则索引将不会生效。
- CREATE INDEX 索引名 on 表名(字段1,字段2,字段3);
-
- 示例:
- create index name_cardid_phone_index on member2(name,cardid,phone); #使用3个字段创建组合索引
- alter table 表名 add index 索引名(字段1,字段2, ..., 字段n);
-
- 示例:
- alter table member2 add index phone_name_cardid_index(phone,name,cardid);
- CREATE TABLE 表名(列名1 数据类型,列名2 数据类型,列名3 数据类型, INDEX 索引名(字段1,字段2,字段3));
-
- 示例:
- create table info2(id int(10),name varchar(10),phone int(11),index name_phone_index(name,phone));
使用select查询时注意where的最左原则。查询字段的顺序要和组合索引保持一致,才能生效。
select * from 表名 where 字段1=XXX and 字段2=XXX and ...;
- select * from member2 where name=lisi and cardid=1103 and phone=1388888888;
- ##这条查询语句,会使用到name_cardid_phone_index这个索引。
-
- select * from member2 where phone=1888888888 and name=张三 and cardid=1101;
- ##这条查询语句,会使用到phone_name_cardid_index这个索引。
-
-
- select * from member2 where cardid=1102 and name=王五 and phone=1588888888;
- ##这条查询语句无法使用索引,因为查询字段的顺序和组合索引不一致。
全文索引(FULLTEXT):适合在进行模糊查询的时候使用,可用于在一篇文章中检索文本信息。
在MySQL5.6版本以前FULLTEXT索引仅可用于MyISAM引擎,在5.6版本之后innodb 引擎也支持FULLTEXT 索引。
全文索引可以在CHAR、 VARCHAR 或者TEXT 类型的列上创建。
每个表一般只创建一个全文索引。
查询时只能匹配完整的单词/字符串。
- create fulltext index 索引名 on 表名 (字段);
-
- 示例:
- create fulltext index remark_index on member(remark);
- alter table 表名 add fulltext 索引名 (字段);
-
- 示例:
- alter table member add fulltext address_index(address);
- create table 表名 (字段.... , fulltext 索引名 (字段));
-
- 示例:
- create table room4(id int(10),name varchar(10),fulltext name_index(name));
全文索引查询时,只能匹配完整的单词或字符串
- select * from 表名 where match(字段名) against(单词/字符串);
-
- 示例:
- #查询remark字段包含字符串"vip"的数据记录。
- select * from member where match(remark) against('vip');
-
- #查询remark字段包含字符串"vvvip"的数据记录。
- select * from member where match(remark) against('vvvip');
-
- #这条语句查询不到匹配的记录,因为全文索引只能匹配完整的单词/字符串。
- select * from member where match(remark) against('ip');
可以使用explain命令分析一下,这个 select语句是否使用了索引或者索引使用是否正确。
explain select * from member where match(remark) against('vip')\G
- show index from 表名; #能查看索引的字段和细节,建议以纵向形式查看
- show index from 表名\G #建议使用\G以纵向形式查看
-
- show keys from 表名;
- show keys from 表名\G
-
- show create table 表名; #只能查看索引的字段和名称
查询结果中,各字段的含义如下
除了删除主键索引,删除其他索引的方式是一样的。
alter table 表名 drop primary key;
- drop index 索引名 on 表名; #直接删除索引
-
- alter table 表名 drop index 索引名; #修改表的方式删除索引
-
-
- 例:
- drop index address_index on member; #直接删除索引
-
- alter table 表名 drop index 索引名; #修改表的方式删除索引
作用: 加快查询速度,对字段进行排序。
副作用:
索引需要占用额外的磁盘空间。
在插入和修改数据时要花费更多的时间、消耗更多性能,因为索引也要随之变动
explain select ...;
分析一下 这个 select语句是否使用了索引或者索引使用是否正确。create index 索引名 on 表名 (字段);
或者 alter table 表名 add index 索引名(字段);
添加索引去优化查询速度create index 索引名 on 表名 (字段);
alter table 表名 add index 索引名 (字段(4));
create table 表名 (字段.... , index 索引名(字段));
create unique index 索引名 on 表名 (字段);
alter table 表名 add unique 索引名(字段);
create table 表名 (字段.... , unique 索引名(字段));
alter table 表名 add primary key (字段);
create table 表名 (字段.... , primary key (字段));
create table 表名 (字段 primary key, ... );
create index XXX_index on 表名 (字段1,字段2, ... , 字段n);
alter table 表名 add index XXX_index (字段1,字段2, ... , 字段n);
create table 表名(列名1 数据类型,列名2 数据类型,列名3 数据类型, INDEX 索引名(字段1,字段2,字段3));
使用时要注意 where 的最左原则:
select * from 表名 where 字段1=XXX and 字段2=XXX and ....
create fulltext index 索引名 on 表名 (字段);
alter table 表名 add fulltext 索引名 (字段);
create table 表名 (字段.... , fulltext 索引名(字段));
查询时只能匹配完整的字符串:
select * from 表名 where match(字段) against('查询字符串');
show index from 表名; //能查看索引的字段和细节,建议使用\G纵向查看
show keys from 表名;
show create table 表名; //只能查看索引的字段和名称
alter table 表名 drop primary key;
drop index 索引名 on 表名;
alter table 表名 drop index 索引名;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。