资源描述:
《数据库原理实验4参考》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、数据库原理实验4时间:班级:学号:姓名:----------------------------------------------------------------------------------------------------------------------一目的1)复习掌握SQL的DDL2)在MSSQLSERVER中实现查询-------------------------------------------------------------------------------------------------------------------
2、---二上机具体内容将student备份数据库还原(备份的数据库在同一目录下),在还原的数据库(内容和书56页的表一样)上做如下查询(用SQL表示):l查询所有信息系的男同学的信息<将SQL语句写在此处>:Select*fromstudentWheressex=’男’andsdept=’is’l所有年龄在19在20岁的管理系的学生的学号与姓名<将SQL语句写在此处>:SQL1:Selectsno,snamefromstudentWheresagebetween19and20andsdept=’MA’SQL2:Selectsno,snamefromstudentWhere
3、sage>=19andsage<=20andsdept=’MA’SQL3:Selectsno,snamefromstudentWheresagesagein(19,20)andsdept=’MA’l查询所有学生的学号、姓名、出生年(year(getdate(()))、所在系用小写(lower)表示,要求查询后的属性用中文显示(用别名[as])并按照年龄从大到小排序,年龄相同的情况下按学号升序排列。。<将SQL语句写在此处>:Selectsno学号,sname姓名、year(getdate()-sage)出生年、sdept所在系FromstudentOrderbysage
4、desc,snol查询姓李的学生数学的成绩,要求输出学号、姓名、成绩SQL1:Selectstudent.sno,sname,gradeFromstudent,sc,courseWherestudent.sno=sc.snoandsc.cno=course.cnoSQL2:Selectstudent.sno,sname,gradeFromstudent,scWherestudent.sno=sc.snoAndcnoin(selectcnofromcoursewherecname=’数学’)l查询各个系的学生人数,学生的平均年龄,最大年龄,最小年龄。<将SQL语句写在此处
5、>:Selectcount(sno),avg(sage),max(sage),min(sage)FromstudentGroupbysdeptl查询选修了课程的学生学号,姓名,选修的课程数,最高成绩,最低成绩,平均成绩。<将SQL语句写在此处>:Selectstudent.sno,sname,count(cno),max(grade).avg(grade),avg(grade)Fromstudent,scWherestudent.sno=sc.snoGroupbystudent.sno,snamel查询和“张立”同一个系的学生的学号,姓名,所在系SQL1:Selectr
6、.sno,r.sname,r.sdeptFromstudentr,studentsWherer.sdept=s.sdeptands.sname=’张立’SQL2:Selectsno,sname,sdeptFromstudentWheresdeptin(selectsdeptfromstudentWheresname=’张立’)l查询没有选修了“数据库”的学生学号,姓名,系别。SQL1:(用IN)Selectsno,sname,sdeptFromstudentWheresnonotin(Selectsnofromsc,courseWheresc.cno=course.cn
7、oAndcname=’数据库’)SQL2:(用EXISTS)Selectsno,sname,sdeptFromstudentWherenotexists(select*fromscWheresno=student.snoAndcnoin(selectcnofromcourseWherecname=’数据库’))l查询选修了所有课程的学生学号,姓名,系别。<将SQL语句写在此处>:Selectsno,sname,sdeptFromstudentWherenotexists(select*fromcourseWherenotexists(se