Mysql “员工管理系统”索引
一、目的
1、掌握索引的功能和作用
2、掌握索引的创建和管理方法
二、内容
用于企业管理的员工管理数据库,数据库名为YGGL,包含员工信息表Employees、部门信息表Departments、员工薪水情况表Salary
1、请按要求对YGGL库建立相关索引
(1)、使用CREATE INDEX创建索引
① 对Employees表中的DepartmentID列创建普通索引depart_ind
create index depart_ind on employees(员工部门号);
② 对Employees表中的Name和Address列创建复合索引Ad_ind
create index Ad_ind on employees(姓名,地址);
③ 对Departments表中的DepartmentName列创建唯一索引
create unique index dep_name on departments(部门名称);
(2)、使用Alter Table添加索引
① 对Employees表中的Birthday列添加一个唯一索引date_ind,Name和Sex列添加一个复合索引na_ind
alter table employees add unique index data_ind(出生日期);
② 对Departments表中的DepartmentID列创建主键索引
alter table departments add primary key (部门编号);
(3)、创建表的同时创建索引创建表cpk(产品编号,产品名称,单价,库存量) ,并对产品编号创建主键,在库存量和单价列上创建复合索引cpk_fh
create table cpk(
产品编号 char(10) not null primary key,
产品名称 varchar(20) not null,
单价 decimal(10,2) not null,
库存量 int not null,
index cpk_fh(库存量,单价));
2、显示Employees表的索引情况
show index from employees;