资源描述:
《实验五 数据库综合查询(学生)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验五数据库综合查询一、实验目的1.掌握SELECT语句的基本语法和查询条件表示方法;2.掌握查询条件种类和表示方法;3.掌握连接查询的表示及使用;4.掌握嵌套查询的表示及使用;5.了解集合查询的表示及使用。二、实验内容1.了解SELECT语句的基本语法格式和执行方法;2.以数据库原理实验5数据为基础,请使用T-SQL语句实现进行相应操作;3.完成实验报告。三、实验步骤1.查询以‘数据_’开头,且倒数第3个字符为‘结’的课程的详细情况select*fromcoursewhereCnamelike'数据_%结_'esca
2、pe''2.查询名字中第2个字为‘阳’的学生姓名和学号及选修的课程号、课程名;selectsname姓名,student.sno学号,course.cno课程号,course.cname课程名fromstudent,course,scwherestudent.sno=sc.snoandsc.cno=course.cnoandsnamelike'_阳%'3.列出选修了‘数学’或者‘大学英语’的学生学号、姓名、所在院系、选修课程号及成绩;selectstudent.sno,sname,sdept,cno,gradefrom
3、student,scwherestudent.sno=sc.snoandcnoIN(selectcnofromcoursewherecname='数学'ORCNAME='大学英语')4.查询缺少成绩的所有学生的详细情况;select*fromstudentwherenotexists(select*fromscwheresno=student.snoandgradeisnotnull)select*fromstudentwheresnoin(selectsnofromscwheregradeisnull)1.查询与‘张力
4、’(假设姓名唯一)年龄不同的所有学生的信息;selectb.*fromstudenta,studentbwherea.sname='张力'anda.sage<>b.sage2.查询所选课程的平均成绩大于张力的平均成绩的学生学号、姓名及平均成绩;selectstudent.sno,sname,平均成绩=avg(grade)fromstudent,scwheresc.sno=student.snogroupbystudent.sno,snamehavingavg(grade)>(selectavg(grade)fromscw
5、heresno=(selectsnofromstudentwheresname='张力'))3.按照“学号,姓名,所在院系,已修学分”的顺序列出学生学分的获得情况。其中已修学分为考试已经及格的课程学分之和;selectstudent.sno学号,sname姓名,sdept院系,已修学分=sum(credit)fromstudent,course,scwherestudent.sno=sc.snoandcourse.cno=sc.cnoandgrade>=60groupbystudent.sno,sname,sdept4.
6、列出只选修一门课程的学生的学号、姓名、院系及成绩;selectstudent.sno学号,sname姓名,sdept院系,gradefromstudent,scwherestudent.sno=sc.snoandsc.snoin(selectsnofromscgroupbysnohavingcount(cno)=1)1.查找选修了至少一门和张力选修课程一样的学生的学号、姓名及课程号;selectdistinctstudent.*fromstudentwheresnoin(selectsnofromscwherecnoin
7、(selectcnofromcoursewherecname='数据库'orcname='数据结构'))2.只选修“数据库”和“数据结构”两门课程的学生的基本信息;selectz.cno,z.cname,x.sno,x.sname,gradefromstudentx,scy,coursezwherex.sno=y.snoandy.cno=z.cno3.至少选修“数据库”或“数据结构”课程的学生的基本信息;select*fromstudent,sc,coursewherestudent.sno=sc.snoandsc.cn
8、o=course.cnoandcname='数据库'orcname='数据结构'4.列出所有课程被选修的详细情况,包括课程号、课程名、学号、姓名及成绩;selectcourse.cno,course.cname,student.sno,student.sname,gradefromstudent,sc,coursew