资源描述:
《北邮大三数据库实验三数据查询实验.doc》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、实验三数据查询实验实验目的通过对实验二中建立的学生数据库关系表和视图的各种查询的操作,加深对SQL查询语言的了解,掌握相关查询语句的语法和使用方法。实验步骤1、在简单查询实验中,在sql语句完成以下查询操作:(1)查询“数据库原理”课程的学分;selectcreditfromcoursewherecourse_name='数据库原理'(2)查询选修了课程编号为“C01”的学生的学号和成绩,并将成绩按降序输出;selectstudent_id,scorefromscwherecourse_id='C01'orderbysc
2、oredesc一共25条查询结果(3)查询学号为“31401”的学生选修的课程编号和成绩;selectcourse_id,scorefromscwherestudent_id=31401一共3条查询结果(4)查询选修了课程编号为“C01”且成绩高于85分的学生的学号和成绩。selectstudent_id,scorefromscwherecourse_id='C01'andscore>85一共5条查询结果2、在多表连接的查询实验中,在SQL SERVER提供的交互式语言环境下用TransactSQL语句完成以下查询操作:
3、(1)查询选修了课程编号为“C01”且成绩高于85分的学生的学号、姓名和成绩;selectsc.student_id,student_name,scorefromsc,studentwheresc.course_id='C01'andsc.student_id=student.student_idandsc.score>85一共5条查询结果(2)查询所有学生的学号、姓名、选修的课程名称和成绩;selectsc.student_id,student_name,course_name,scorefromsc,student,
4、coursewheresc.student_id=student.student_idandsc.course_id=course.course_id一共142条查询结果3、在复杂查询实验中,用SQL语句完成以下查询操作:(1)查询至少选修了三门课程的学生的学号和姓名;selectsc.student_id,student.student_name,COUNT(sc.course_id)fromsc,studentwheresc.student_id=student.student_idgroupbysc.student
5、_id,student_namehavingCOUNT(sc.course_id)>=3一共39条查询结果(2)查询所有学生的学号和他选修课程的最高成绩,要求他的选修课程中没有成绩为空的。selectsc.student_id,student_name,max(score)asmax_scorefromsc,studentwheresc.student_idin((selectsc.student_idfromsc,studentwheresc.student_id=student.student_id)except(s
6、electsc.student_idfromsc,studentwheresc.student_id=student.student_idandscoreisNULL))andsc.student_id=student.student_idgroupbysc.student_id,student_name一共52条查询结果,成绩为NULL的30401和30402号同学有成绩为空,不在查询结果中4、在嵌套查询实验中,在SQLServer提供的交互式语言环境下用iSQL语句完成以下查询操作,要求写嵌套查询语句:(1)查询选修
7、了数据库原理的学生的学号和姓名;selectstudent_id,student_namefromstudentwherestudent_idin(selectstudent_idfromsc,coursewheresc.course_id=course.course_idandcourse_name='数据库原理')一共23条查询结果(2)查询没有选修数据库原理的学生的学号和姓名;selectstudent_id,student_namefromstudentwherestudent_idnotin(selectstu
8、dent_idfromsc,coursewheresc.course_id=course.course_idandcourse_name='数据库原理')一共31条查询结果(3)查询至少选修了学号为“31401”的学生所选修的所有课程的学生的学号和姓名。selectstudent_id,student_namefro