《数据库原理》实验4 下载本文

内容发布更新时间 : 2024/5/4 2:37:23星期一 下面是文章的全部内容请认真阅读。

实验四:数据库综合查询

一、实验目的

1. 掌握SELECT语句的基本语法和查询条件表示方法; 2. 掌握查询条件种类和表示方法; 3. 掌握连接查询的表示及使用; 4. 掌握嵌套查询的表示及使用; 5. 了解集合查询的表示及使用。 二、实验环境

已安装SQL Server 2008 企业版的计算机; 具有局域网环境,有固定IP; 三、实验学时

2学时 四、实验要求

1. 了解SELECT语句的基本语法格式和执行方法; 2. 了解连接查询的表示及使用; 3. 了解嵌套查询的表示及使用; 4. 了解集合查询的表示及使用; 5. 完成实验报告; 五、实验内容及步骤

以数据库原理实验2数据为基础,请使用T-SQL 语句实现进行以下操作: 1. 查询以‘DB_’开头,且倒数第3个字符为‘s’的课程的详细情况;

2. 查询名字中第2个字为‘阳’的学生姓名和学号及选修的课程号、课程名; 3. 列出选修了‘数学’或者‘大学英语’的学生学号、姓名、所在院系、选修课程号

及成绩;

4. 查询缺少成绩的所有学生的详细情况;

5. 查询与‘张力’(假设姓名唯一)年龄不同的所有学生的信息;

6. 查询所选课程的平均成绩大于张力的平均成绩的学生学号、姓名及平均成

绩;

7. 按照“学号,姓名,所在院系,已修学分”的顺序列出学生学分的获得情况。

其中已修学分为考试已经及格的课程学分之和; 8. 列出只选修一门课程的学生的学号、姓名、院系及成绩;

9. 查找选修了至少一门和张力选修课程一样的学生的学号、姓名及课程号; 10. 只选修“数据库”和“数据结构”两门课程的学生的基本信息;

11. 至少选修“数据库”或“数据结构”课程的学生的基本信息;

12. 列出所有课程被选修的详细情况,包括课程号、课程名、学号、姓名及成绩; 13. 查询只被一名学生选修的课程的课程号、课程名;

14. 检索所学课程包含学生‘张向东’所学课程的学生学号、姓名; 15. 使用嵌套查询列出选修了“数据结构”课程的学生学号和姓名;

16. 使用嵌套查询查询其它系中年龄小于CS系的某个学生的学生姓名、年龄和

院系;

17. 使用ANY、ALL 查询,列出其他院系中比CS系所有学生年龄小的学生; 18. 分别使用连接查询和嵌套查询,列出与‘张力’在一个院系的学生的信息; 19. 使用集合查询列出CS系的学生以及性别为女的学生名单;

20. 使用集合查询列出CS系的学生与年龄不大于19岁的学生的交集、差集; 21. 使用集合查询列出选修课程1的学生集合与选修课程2的学生集合的交集; 22. 思考题:按照课程名顺序显示各个学生选修的课程(如200515001 数据库

数据结构 数学);

六、出现问题及解决办法

如:某些查询操作无法执行,如何解决?

1、查询以‘DB_’开头,且倒数第三个字符为‘s’的课程的详细情况 select * from course

where cname like 'DB\\_%s__'

2、查询名字中第二个字为“阳”的学生姓名和学号及选修的课程号、课程名 select student.sno ,student.sname ,sc.cno,cname from student,course,sc where sname like '_阳%'and student.sno=sc.sno and sc.Cno=course.cno 3、列出选修了‘数学’或‘大学英语’的学生学号、姓名、

select student.sno,sname,sdept,sc.Cno,cname,grade from student,sc,course where student.sno=sc.sno and sc.Cno=course.cno and

sc.sno in(select sc.sno from sc,course where (cname='大学英语'or cname='数学') and sc.Cno=course.cno group by sc.sno)

select student.sno,sname,sdept,cno,grade from student,sc where Cno in (select Cno from course

where cname='数学'or cname='大学英语')and sc.sno=student.sno 4、查询缺少成绩的所有学生的详细情况; select * from student,sc

where Grade is null and student.sno=sc.sno

5、查询与‘张力’(假设姓名唯一)年龄不同的所有学生的信息; select * from student where sage <>(select sage from student where sname='张力')

6、查询所选课程的平均成绩大于张力的平均成绩的学生学号、姓名及平均成绩 select student.sno,sname,平均成绩=AVG(grade) from student ,sc

where student.sno=sc.sno group by student.sno,sname

having AVG(Grade)>(select AVG(Grade)from sc,student where sname='张力'and student.sno=sc.sno)

7、按照?学号,姓名,所在院系,已修学分?的顺序列出学生学分的获得情况。 其中已修学分为考试已经及格的课程学分之和;

select student.sno,sname,sdept,已修学分=SUM(ccredit) from student,sc,course

where Grade>60and student.sno=sc.sno and sc.Cno=course.cno group by student.sno,sname,sdept

8、列出只选修一门课程的学生的学号、姓名、院系及成绩 select student.sno,sname,sdept,Cno,grade from student,sc where student.sno=sc.sno and sc.sno in

(select sno from sc group by sc.sno having COUNT(distinct Cno)=1) 9、查找选修了至少一门和张力选修课程一样的学生的学号、姓名及课程号; select student.sno,sname,cno from student,sc where student.sno=sc.sno and

sc.sno in(select sc.sno from sc ,student where cno in

(select cno from student,sc where sname='张力'and student.sno=sc.sno) )

10、只选修?数据库?和?数据结构?两门课程的学生的基本信息; select student.sno,sname from student,sc,course where student.sno=sc.sno and sc.Cno=course.cno and

sc.sno in(select sc.sno from sc,course where (cname='数据库'or cname='数学')and sc.Cno=course.cno group by sc.sno having COUNT(*)=2) group by student.sno,sname having COUNT(*)=2

11、至少选修?数据库?或?数据结构?课程的学生的基本信息; 只包括其中一门或两门: select student.sno,sname,sdept,sc.Cno,cname,grade from student,sc,course where student.sno=sc.sno and sc.Cno=course.cno and

sc.sno in(select sc.sno from sc,course where (cname='数据库'or cname='数据结构')and sc.Cno=course.cno ) 两门课全部包括:

select student.sno,sname,sdept,sc.Cno,cname,grade from student,sc,course where student.sno=sc.sno and sc.Cno=course.cno and

sc.sno in(select sc.sno from sc,course where (cname='数据库'or cname='数据结构')and sc.Cno=course.cno group by sc.sno having COUNT(sc.Cno)>=2)

12、列出所有课程被选修的详细情况,包括课程号、课程名、学号、姓名及成绩 select course.cno,cname,student.sno,sname,grade from student,sc,course where student.sno=sc.sno and sc.Cno=course.cno order by course.cno