4.7 KiB
综合案例5——索引
本部分介绍了什么是索引,以及索引的种类及各种索引的创建方法,如建表的同时创建索引、使用alter table或create index语句创建索引。索引是提高数据库性能的一个强有力的工具,因此同学们要掌握好索引的创建。
1、案例目的
创建数据库index_test,按照下面表结构在index_test数据库中创建两个数据表test_table1和test_table2,如表1表2所示,并按照操作过程完成对数据表的基本操作。
表1 test_table1表结构
字段名 | 数据类型 | 主键 | 外键 | 非空 | 唯一 | 自增 |
---|---|---|---|---|---|---|
id | int(11) | 否 | 否 | 是 | 是 | 是 |
name | char(100) | 否 | 否 | 是 | 否 | 否 |
address | char(100) | 否 | 否 | 否 | 否 | 否 |
description | char(100) | 否 | 否 | 否 | 否 | 否 |
表2 test_table2表结构
字段名 | 数据类型 | 主键 | 外键 | 非空 | 唯一 | 自增 |
---|---|---|---|---|---|---|
id | int(11) | 是 | 否 | 是 | 是 | 否 |
firstname | char(50) | 否 | 否 | 是 | 否 | 否 |
middlename | char(50) | 否 | 否 | 是 | 否 | 否 |
lastname | char(50) | 否 | 否 | 是 | 否 | 否 |
birth | date | 否 | 否 | 是 | 否 | 否 |
title | char(100) | 否 | 否 | 否 | 否 | 否 |
2、案例操作过程
(1)登录MySQL数据库。
mysql -u root -p
截图:
(2)创建数据库index_test并选择使用此数据库。
create database index_test;
use index_test;
截图:
(3)按照表1创建test_table1表,并在建表的同时创建如下索引:在id上创建名称为UniqIdxid的唯一索引,在name(长度20),address(长度30)上创建名称为MultiColIdx的组合索引,在description(长度30)上创建名称为ComIdx的普通索引。
create table test_table1(
id int (11) not null unique auto_increment,
name char(100) not null,
address char(100),
description char(100),
unique index UniqIdx(id),
index MultiColIdx(name(20),address(30)),
index ComIdx(description(30))
);
截图:
(4)使用show语句查看索引信息。
show index from test_table1;
截图:
(5)按照表2创建表test_table2,存储引擎为MyISAM。
create table test_table2(
id int(11) not null unique,
firstname char(50) not null,
middlename char(50) not null,
lastname char(50) not null,
birth date not null,
title char(100),
primary key(id)
)engine=MyISAM;
截图:
(6)使用alter table语句在test_table2的birth字段上,建立名称为ComDateIdx的普通索引
alter table test_table2 add index ComDateIdx(birth);
截图:
(7)使用alter table语句在test_table2的id字段上,添加名称为UniqIdx2的唯一索引,并以降序排列。
alter table test_table2 add unique index UniqIdx2(id);
截图:
(8)使用create index在firstname、middlename和lastname 3个字段上建立名称为MultiColIdx2的组合索引。
create index MultiColIdx2 on test_table2(firstname,middlename,lastname);
截图:
(9)使用create index在title字段上建立名称为FTIdx的全文索引
create fulltext index FTIdx on test_table2(title);
截图:
(10)使用alter table语句删除表test_table1中名称为UniqIdx的唯一索引。
alter table test_table1 drop index UniqIdx;
截图:
(11)使用drop index语句删除表test_table2中名称为MultiColIdx2的组合索引。
drop index MultiColIdx2 on test_table2;
截图: