资源描述:
《数据库实验五题目答案》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验五实验5.1数据查询1)要求以School数据库为例,在该数据库中存在四张表格,分别为:l表STUDENTS(sid,sname,email,grade);l表TEACHERS(tid,tname,email,salary);l表COURSES(cid,cname,hour);l表CHOICES(no,sid,tid,cid,score)在数据库中,存在这样的关系:学生可以选择课程,一个课程对应一个教师。在表CHOICES中保存学生的选课记录。按以下要求对数据库进行查询操作:(1)查询年级为2001的所有学生的名称并按编号升序排列。程序:Selec
2、tsnamefromstudentswheregrade='2001'orderbysidasc;(2)查询学生的选课成绩合格的课程成绩。程序:Selectscorefromchoiceswherescore>'59';(1)查询课时是48或60的课程的名称。程序:selectcnamefromcourseswherehour='48'orhour='60';(1)查询所有课程名称中含有data的课程编号。程序:selectcidfromcourseswherecnamelike'%data%';(2)查询所有选课记录的课程号(不重复显示)。程序:se
3、lectdistinctcidfromchoices;(1)统计所有教师的平均工资。程序:selectavg(salary)fromteachers;(2)查询所有教师的编号及选修其课程的学生的平均成绩,按平均成绩降序排列。程序:selecttid,avg(score)fromchoicesGROUPBYtidorderbyavg(score)desc;(1)统计各个课程的选课人数和平均成绩。程序:selectcount(distinctsid),avg(score)fromchoicesgroupbycid;(2)查询至少选修了三门课程的学生编号。程
4、序:selectsidfromchoicesgroupbysidhavingcount(cid)>=’3’;(1)查询编号800009026的学生所选的全部课程的课程名和成绩。程序:selectdistinctcname,scorefromcourses,choiceswheresid='800009026'andcourses.cid=choices.cid(1)查询所有选修了database的学生的编号。程序:selectsidfromchoices,courseswherecname='database'andchoices.cid=course
5、s.cid;(2)求出选择了同一个课程的学生对。程序:Selectx.sid,y.sidFromchoicesx,choicesyWherex.cid=y.cidandx.sid<>y.sid(1)求出至少被两名学生选修的课程编号。程序:selectcidfromchoicesgroupbycidhavingcount(sid)>=2;(1)查询选修了编号800009026的学生所选的某个课程的学生编号。程序:selectsidfromchoiceswherecidin(selectcidfromchoiceswheresid='800009026')
6、andsid<>'800009026';(2)查询学生的基本信息及选修课程编号和成绩。程序:selectstudents.sid,sname,email,grade,cid,scorefromstudents,choiceswherestudents.sid=choices.sid;(1)查询学号850955252的学生的姓名和选修的课程名及成绩。程序:selectsname,cname,scorefromstudents,courses,choiceswherechoices.sid='850955252'andstudents.sid=choice
7、s.sidandcourses.cid=choices.cid;(1)查询与学号850955252的学生同年级的所有学生资料。程序:selectfromstudentswheregrade=(selectgradefromstudentswheresid='850955252');(1)查询所有有选课的学生的详细信息。程序:selectstudents.sid,sname,email,grade,no,cid,scorefromstudents,choiceswherecidisnotnullandstudents.sid=choices.sid;