1、实验三:索引的创建与使用一、实验目的:1、理解索引的概念和索引的作用。2、掌握创建索引的方法。3、学会使用索引。4、了解聚簇索引和非聚簇索引。二、实验要求:(必做)硬件:Intel Pentium 120 或以上级别的 CPU,大于 16MB 的内存。软件:Windows 95/98/2000 操作系统,关系数据库管理系统 SQL SERVER 2000。学时:2 学时三、实验内容:1、用 create index 在学生表 student 的学号 sno 上建立聚簇索引。2、在学生表 student 中,为姓名 sname 建立非聚簇索引。3、在课程表的课程号 Cno 上建立唯一索引。4、在
2、选课表的学号 sno、成绩 Grade 上建立复合索引,要求学号为升序,学号相同时成绩为降序。5、用 drop 删除学生表 student 的索引。数据库设计与管理实验报告实验名称 评分 实验日期 年 月 日 指导教师 姓名 专业班级 学号 一、实验目的二、实验步骤及结果1、用 create index 在学生表 student 的学号 sno 上建立聚簇索引。create clustered index stusno on student(sno);2、在学生表 student 中,为姓名 sname 建立非聚簇索引。create index stusname on student(snam
3、e);3、在课程表的课程号 Cno 上建立唯一索引。create unique index coucno on course(cno);4、在选课表的学号 sno、成绩 Grade 上建立复合索引,要求学号为升序,学号相同时成绩为降序。create unique index scng on sc(sno asc,grade desc);5、用 drop 删除学生表 student 的索引。drop index student.stusno,student.stusname;三、程序调试及问题分析1、用 create index 在学生表 student 的学号 sno 上建立聚簇索引。create cluster index stusno on student(sno);为什么?Cluster 后要加 ed.drop index stusno,stuname;drop index student.stusno,student.stusname;四、实验收获及体会