1.索引是一个排序的列表,在这个列表中存储着索引的值和包含这个值的数据所在行的物理地址(类似于C 语言的链表通过指针向数据记录的内存地址)
2.使用索引后可以不用扫描全表来定位某行的数据,而是先通过索引表找到该数据对应的物理地址然后访问相应的数据,因此能加快数据库的查询速度
3.索引就好比一本书的目录,可以根据目录中的页码快速找到所需的内容
4.索引是表中一列或者若干列值排序的方法
5.建立索引的目的是加快对表中记录的查找或排序
索引虽可以提升数据库查询的速度,但并不是任何情况下都适合创建索引。因为索引本身会消耗系统资源,在有索引的情况下,数据库会先进行索引查询,然后定位到具体的数据行,如果索引使用不当,反而会增加数据库的负担
表的主键、外键必须有索引。因为主键具有唯一性,外键关联的是子表的主键,查询时可以快速定位
记录数超过300行的表应该有索引。如果没有索引,需要把表遍历一遍,会严重影响数据库的性能
经常与其他表进行连接的表,在连接字段上应该建立索引
唯一性太差的字段不适合建立索引
更新太频繁地字段不适合创建索引
经常出现在 where 子句中的字段,特别是大表的字段,应该建立索引
索引应该建在选择性高的字段上
索引应该建在小字段上,对于大的文本字段甚至超长字段,不要建索引
##创建一个模板
mysql> create database sushe;
Query OK, 1 row affected (0.00 sec)
#切换到库
mysql> use sushe;
Database changed
##创建ryb表
mysql> create table ryb (id int(10),name varchar(10),cardid varchar(18),phone varchar(11),gender varchar(10));
Query OK, 0 rows affected (0.01 sec)
#查看结构
mysql> desc ryb;
+--------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+-------------+------+-----+---------+-------+
| id | int(10) | YES | | NULL | |
| name | varchar(10) | YES | | NULL | |
| cardid | varchar(18) | YES | | NULL | |
| phone | varchar(11) | YES | | NULL | |
| gender | varchar(10) | YES | | NULL | |
+--------+-------------+------+-----+---------+-------+
#加入6条新数据
mysql> insert into ryb values (1,'qjm',123,111111,'nan');
mysql> insert into ryb values (2,'cxj',1234,222222,'nan');
mysql> insert into ryb values (4,'hjt',12345,333333,'nan');
mysql> insert into ryb values (3,'zx',123456,444444,'nan');
mysql> insert into ryb values (5,'zmw',1234567,555555,'nan');
mysql> insert into ryb values (6,'lzq',12345678,666666,'nan');
#查看ryb表数据
mysql> select * from ryb;
+------+------+----------+--------+--------+
| id | name | cardid | phone | gender |
+------+------+----------+--------+--------+
| 1 | qjm | 123 | 111111 | nan |
| 2 | cxj | 1234 | 222222 | nan |
| 4 | hjt | 12345 | 333333 | nan |
| 3 | zx | 123456 | 444444 | nan |
| 5 | zmw | 1234567 | 555555 | nan |
| 6 | lzq | 12345678 | 666666 | nan |
+------+------+----------+--------+--------+
##格式 CREATE INDEX 索引名 ON 表名 (列名[(length)]);
#(列名(length)):length是可选项。如果忽略 length 的值,则使用整个列的值作为索引。如果指定使用列前的 length 个字符来创建索引,这样有利于减小索引文件的大小。
#索引名建议以“_index”结尾
#例:
mysql> create index name_index on ryb (name);
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
#以sql语句的形式查看表结构
mysql> show create table ryb\G
*************************** 1. row ***************************
Table: ryb
Create Table: CREATE TABLE "ryb" (
"id" int(10) DEFAULT NULL,
"name" varchar(10) DEFAULT NULL,
"cardid" varchar(18) DEFAULT NULL,
"phone" varchar(11) DEFAULT NULL,
"gender" varchar(10) DEFAULT NULL,
KEY "name_index" ("name") ##索引已经创建成功
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 ALTER TABLE 表名 ADD INDEX 索引名 (列名);
#例:
##创建索引
mysql> alter table ryb add index id_index (id);
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0
#以sql语句的形式查看表结构
mysql> show create table ryb\G
*************************** 1. row ***************************
Table: ryb
Create Table: CREATE TABLE "ryb" (
"id" int(10) DEFAULT NULL,
"name" varchar(10) DEFAULT NULL,
"cardid" varchar(18) DEFAULT NULL,
"phone" varchar(11) DEFAULT NULL,
"gender" varchar(10) DEFAULT NULL,
KEY "name_index" ("name"),
KEY "id_index" ("id") ##已经创建id索引
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 CREATE TABLE 表名 ( 字段1 数据类型,字段2 数据类型[,...],INDEX 索引名 (列名));
#例:
mysql> create table test01(id int(4) not null,name varchar(10) not null,cardidd varchar(18),phone varchar(11),gender varchar(10),index name_index (name));
Query OK, 0 rows affected (0.00 sec)
#以sql语句的形式查看表结构
mysql> show create table test01\G
*************************** 1. row ***************************
Table: test01
Create Table: CREATE TABLE "test01" (
"id" int(4) NOT NULL,
"name" varchar(10) NOT NULL,
"cardid" varchar(18) DEFAULT NULL,
"phone" varchar(11) DEFAULT NULL,
"gender" varchar(10) DEFAULT NULL,
KEY "name_index" ("name") ##创建索引成功
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
唯一索引允许有空值(注意和主键不同)。如果是用组合索引创建,则列值的组合必须唯一。添加唯一键将自动创建唯一索引
##格式 CREATE UNIQUE INDEX 索引名 ON 表名(列名);
#例:
#创建唯一索引
mysql> create unique index name_index on asd(name);
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
##以sql语句格式查看结构
mysql> show create table asd\G
*************************** 1. row ***************************
Table: asd
Create Table: CREATE TABLE "asd" (
"id" int(10) NOT NULL,
"name" varchar(14) DEFAULT NULL,
"hobby" varchar(20) DEFAULT NULL,
UNIQUE KEY "name_index" ("name") ##//成功创建唯一索引
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 ALTER TABLE 表名 ADD UNIQUE 索引名 (列名);
#例:
#修改表方式创建索引
mysql> alter table asd add unique hobby_index (hobby);
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show create table asd\G
*************************** 1. row ***************************
Table: asd
Create Table: CREATE TABLE "asd" (
"id" int(10) NOT NULL,
"name" varchar(14) DEFAULT NULL,
"hobby" varchar(20) DEFAULT NULL,
UNIQUE KEY "name_index" ("name"),
UNIQUE KEY "hobby_index" ("hobby") ##成功创建
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 CREATE TABLE 表名 (字段1 数据类型,字段2 数据类型[,...],UNIQUE 索引名 (列名));
#例:
mysql> create table zxc(id int(4) not null,name varchar(10),unique id_index (id));
Query OK, 0 rows affected (0.00 sec)
mysql> show create table zxc\G
*************************** 1. row ***************************
Table: zxc
Create Table: CREATE TABLE "zxc" (
"id" int(4) NOT NULL,
"name" varchar(10) DEFAULT NULL,
UNIQUE KEY "id_index" ("id") ##成功创建
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
一个表只能有一个主键,不允许有空值,添加主键将自动创建主键索引
##格式 CREATE TABLE 表名 ([...],PRIMARY KEY (列名));
#例:
mysql> create table test (id int primary key,name varchar(20));
Query OK, 0 rows affected (0.00 sec)
mysql> show create table test\G
*************************** 1. row ***************************
Table: test
Create Table: CREATE TABLE "test" (
"id" int(11) NOT NULL,
"name" varchar(20) DEFAULT NULL,
PRIMARY KEY ("id") ##成功创建
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 ALTER TABLE 表名 ADD PRIMARY KEY (列名);
#例:
mysql> alter table asd add primary key (id);
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show create table asd\G
*************************** 1. row ***************************
Table: asd
Create Table: CREATE TABLE "asd" (
"id" int(10) NOT NULL,
"name" varchar(14) DEFAULT NULL,
"hobby" varchar(20) DEFAULT NULL,
PRIMARY KEY ("id"), ##成功创建
UNIQUE KEY "name_index" ("name"),
UNIQUE KEY "hobby_index" ("hobby")
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 REATE TABLE 表名 (列名1 数据类型,列名2 数据类型,列名3 数据类型,INDEX 索引名 (列名1,列名2,列名3));
##查询格式 select * from 表名 where 列名1='...' AND 列名2='...' AND 列名3='...';
#例:
mysql> create table qwe1(id int not null,name varchar(20),cardid varchar(20),index index_qwe (id,name));
Query OK, 0 rows affected (0.02 sec)
#查看
mysql> show create table qwe1\G
*************************** 1. row ***************************
Table: qwe1
Create Table: CREATE TABLE "qwe1" (
"id" int(11) NOT NULL,
"name" varchar(20) DEFAULT NULL,
"cardid" varchar(20) DEFAULT NULL,
KEY "index_qwe" ("id","name")
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
mysql> select * from qwe1 where name='wlw' and id=1;
mysql> select id,name from qwe1; ##触发索引
mysql> select name,id from qwe1; ##不会触发索引,因为从左往右执行的,定义的索引是id在左
例如:
--+
| test3 | CREATE TABLE "test3" (
"id" int(11) NOT NULL,
"name" varchar(50) DEFAULT NULL,
"age" int(5) DEFAULT NULL,
KEY "index_idname" ("id","name")
) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
对以上的表进行select
select id,name from test3; #会触发组合索引
而:
select name,id from test3; #按照索引从左到右检索的顺序,则不会触发组合索引
##格式 CREATE FULLTEXT INDEX 索引名 ON 表名 (列名);
#例;不记得字段可用 desc 表名,查看再做索引
mysql> create fulltext index cardid_index on qwe1 (cardid);
Query OK, 0 rows affected, 1 warning (0.07 sec)
Records: 0 Duplicates: 0 Warnings: 1
mysql> show create table qwe1\G
*************************** 1. row ***************************
Table: qwe1
Create Table: CREATE TABLE "qwe1" (
"id" int(11) NOT NULL,
"name" varchar(20) DEFAULT NULL,
"cardid" varchar(20) DEFAULT NULL,
KEY "index_qwe" ("id","name"),
FULLTEXT KEY "cardid_index" ("cardid") ##创建成功
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 ALTER TABLE 表名 ADD FULLTEXT 索引名 (列名);
#例:
mysql> alter table zxc1 add fulltext hobby_index (hobby);
Query OK, 0 rows affected, 1 warning (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 1
mysql> show create table zxc1\G
*************************** 1. row ***************************
Table: zxc1
Create Table: CREATE TABLE "zxc1" (
"id" int(11) DEFAULT NULL,
"name" varchar(12) DEFAULT NULL,
"hobby" varchar(24) DEFAULT NULL,
"cardid" varchar(45) DEFAULT NULL,
FULLTEXT KEY "hobby_index" ("hobby") ##创建成功
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 CREATE TABLE 表名 (字段1 数据类型[,...],FULLTEXT 索引名 (列名));
#数据类型可以为 CHAR、VARCHAR 或者 TEXT
#例:
mysql> create table test1 (id int,name varchar(12),hobby varchar(24),cardid varchar(455),fulltext cardid_index (cardid));
Query OK, 0 rows affected (0.21 sec)
mysql> show create table test1\G
*************************** 1. row ***************************
Table: test1
Create Table: CREATE TABLE "test1" (
"id" int(11) DEFAULT NULL,
"name" varchar(12) DEFAULT NULL,
"hobby" varchar(24) DEFAULT NULL,
"cardid" varchar(45) DEFAULT NULL,
FULLTEXT KEY "cardid_index" ("cardid") ##创建成功
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
##格式 SELECT * FROM 表名 WHERE MATCH(列名) AGAINST('查询内容');
#例:
mysql> select name,hobby,cardid from test1 where match(cardid) against('123123');
Empty set (0.00 sec)
##这个是查的到的,只是没有插入内容
##格式
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 开始。 limit 2,3
Column_name 列名称。
Collation 列以什么方式存储在索引中。在 MySQL 中,有值‘A’(升序)或 NULL(无分类)。
Cardinality 索引中唯一值数目的估计值。
Sub_part 如果列只是被部分地编入索引,则为被编入索引的字符的数目(zhangsan)。如果整列被编入索引,则为 NULL。
Packed 指示关键字如何被压缩。如果没有被压缩,则为 NULL。
Null 如果列含有 NULL,则含有 YES。如果没有,则该列含有 NO。
Index_type 用过的索引方法(BTREE, FULLTEXT, HASH, RTREE)。
Comment 备注
##格式 DROP INDEX 索引名 ON 表名;
#例:
mysql> drop index cardid_index on qwe1;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show create table qwe1\G
*************************** 1. row ***************************
Table: qwe1
Create Table: CREATE TABLE "qwe1" (
"id" int(11) NOT NULL,
"name" varchar(20) DEFAULT NULL,
"cardid" varchar(20) DEFAULT NULL,
KEY "index_qwe" ("id","name")
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec
##格式 ALTER TABLE 表名 DROP INDEX 索引名;
#例:
mysql> alter table zxc1 drop index hobby_index;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show index from zxc1\G
Empty set (0.00 sec)
##格式 ALTER TABLE 表名 DROP PRIMARY KEY;
#例:
mysql> alter table test drop primary key;
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show create table test\G
*************************** 1. row ***************************
Table: test
Create Table: CREATE TABLE "test" (
"id" int(11) NOT NULL,
"name" varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
mysql> show index from test;
Empty set (0.00 sec)
mysql> show keys from test;
Empty set (0.00 sec)
索引分为:
① 普通索引 :针对所有字段,没有特殊的需求/规则
② 唯一索引 : 针对唯一性的字段,仅允许出现一次空值
③ 组合索引 (多列/多字段组合形式的索引)
④ 全文索引(varchar char text)
⑤ 主键索引 :针对唯一性字段、且不可为空,同时一张表只允许包含一个主键索引
创建索引:
① 在创建表的时候,直接指定index
② alter修改表结构的时候,进行add 添加index
③ 直接创建索引index
PS:主键索引——》直接创建主键即可