您好,欢迎访问三七文档
当前位置:首页 > 幼儿/小学教育 > 小学教育 > 数据库实验三-实验九含参考答案
自己写的代码:createschemaTestauthorizationzhangcreatetablestudent(snochar(5)notnullunique,snamechar(8),ssexchar(2),sagevarchar(20),sdeptchar(20)default('计算机与信息科学系'))createtablecourse(cnochar(5)notnullunique,cnamechar(20),cpnoint)createtablesc(snochar(5)notnullunique,cnochar(5)notnullunique,gradeint)自己写的代码:altertableTest.studentaddscomdatetimegoaltertableTest.studentaltercolumnsageint实验四:数据查询语言[实验目的]体会SQL语言数据查询功能的丰富和复杂。[实验内容]3.SQL数据查询语句:例3-1:(选择表中的若干列)求全体学生的学号、姓名、性别和年龄。selectSno,Sname,Ssex,SagefromStudent例3-2:(不选择重复行)求选修了课程的学生学号。selectdistinctSnofromSC例3-3:(选择表中的所有列)求全体学生的详细信息。select*fromStudent例3-4:(使用表达式)求全体学生的学号、姓名和出生年份。selectSno,Sname,2010-Sage'出生年份'fromStudent例3-5:(使用列的别名)求学生的学号和出生年份,显示时使用别名“学号”和“出生年份”。selectSno'学号',2010-Sage'出生年份'fromStudent例3-6:(比较大小条件)求年龄大于19岁的学生的姓名和年龄。selectSname,SagefromStudentwheresage19例3-7:(比较大小条件)求计算机系或信息系年龄大于18岁的学生的姓名、系和年龄。selectSname,Sdept,SagefromStudentwhereSdeptin('CS','IS')andSage18例3-8:(确定范围条件)求年龄在19岁与22岁(含20岁和22岁)之间的学生的学号和年龄。selectSno,SagefromStudentwhereSageBetween19and22例3-9:(确定范围条件)求年龄不在19岁与22岁之间的学生的学号和年龄。selectSno,SagefromStudentwhereSagenotBetween19and22例3-10:(确定集合条件)求在下列各系的学生信息:数学系、计算机系。select*fromStudentwhereSdeptin('MA','IS')例3-11:(确定集合条件)求不是数学系、计算机系的学生信息。select*fromStudentwhereSdeptnotin('MA','IS')例3-12:(匹配查询)求姓名是以“李”打头的学生。select*fromStudentwhereSnamelike'李%'例3-13:(匹配查询)求姓名中含有“志”的学生。select*fromStudentwhereSnamelike'%志%'例3-14:(匹配查询)求姓名长度至少是三个汉字且倒数第三个汉字必须是“马”的学生。select*fromStudentwhereSnamelike'%马__'例3-15:(匹配查询)求选修课程1或3,成绩在80至90之间,学号为200215xxx的学生的学号、课程号和成绩。selectSno,Cno,GradefromSCwhereCnoin('1','3')andGradeBetween80and90andSnolike'200215%'[实验要求]对数据库表进行各种查询操作。[实验方法]①将实验需求用SQL语句表示;②执行SQL语句;③查看执行结果,如果结果不正确,进行修改,直到正确为止。[实验总结]①SQL语句以及执行结果;②对重点实验结果进行分析;③实验中的问题和提高;④收获与体会。实验五:数据查询语言[实验目的]体会SQL语言数据查询功能的丰富和复杂。[实验内容]3.SQL数据查询语句:例3-1:(涉及空值查询)求缺少学习成绩的学生的学号和课程号。selectsno,cnofromscwheregradeisnull例3-2:(控制行的显示顺序)求选修003课程或004课程的学生的学号、课程号和分数。selectsno,cno,gradefromscwherecnoin('003','004')orderbygrade例3-3:(组函数)求学生总人数。selectcount(*)fromstudent例3-4:(组函数)求选修了课程的学生人数。selectcount(distinctsno)fromsc例3-5:(组函数)求计算机系学生的平均年龄。selectavg(sage)fromstudentwheresdept='cs'例3-6:(组函数)求选修了课程001的最高、最低与平均成绩。selectmax(grade),min(grade),avg(grade)fromscwherecno='001'例3-7:(分组查询)求各门课程的平均成绩与总成绩。selectcno,avg(grade),sum(grade)fromscgroupbycno例3-8:(分组查询)输入以下查询语句并执行,观察出现的其结果并分析其原因。SELECTSNAME,SDEPT,COUNT(*)FROMSTUDENTWHERESDEPT=’CS’GROUPBYSDEPT;选择列表中的列'STUDENT.Sname'无效,因为该列没有包含在聚合函数或GROUPBY子句中。例3-9:(分组查询)分析以下语句为什么会出现错误。并给出正确的查询语句。SELECTSAGEFROMSTUDENTGROUPBYSNO;选择列表中的列'STUDENT.Sage'无效,因为该列没有包含在聚合函数或GROUPBY子句中。例3-10:(分组查询)求学生人数不足3人的系及其相应的学生数。selectsdept'系别',count(sno)'学生人数'fromstudentgroupbysdepthavingcount(sno)3例3-11:(自然连接查询)求学生号以及其选修课程的课程号和成绩,但查询结果中只能有一个SNO字段。selectsno,cno,gradefromsc例3-12:(连接查询)求选修了课程001且成绩在70分以下或成绩在90分以上的学生的姓名、课程名称和成绩。selectsname,cname,gradefromcourse,student,scwherestudent.sno=sc.snoandcourse.cno=sc.cnoandcourse.cno='001'andsc.cno='001'andgradebetween70and90例3-13:(连接查询与表的别名)求选修了课程的学生的学生姓名、课程号和成绩。selectsname,cno,gradefromstudent,scwherestudent.sno=sc.sno例3-14:(自身连接查询)求年龄大于’刘晨’的所有学生的姓名、系和年龄。selectfirst.sname,first.sdept,first.sagefromstudentfirst,studentsecondwherefirst.sage19andfirst.sno=second.sno例3-15:(外部连接查询)求选修了课程002或003的学生的学号、课程号、课程名和成绩。selectsc.sno,sc.cno,cname,gradefromsc,coursewheresc.cnoin('002','003')andsc.cno=course.cno例3-16:把课本上的例子运行一边好[实验要求]对数据库表进行各种查询操作。[实验方法]①将实验需求用SQL语句表示;②执行SQL语句;③查看执行结果,如果结果不正确,进行修改,直到正确为止。[实验总结]①SQL语句以及执行结果;②对重点实验结果进行分析;③实验中的问题和提高;④收获与体会。实验六:数据查询语言[实验目的]体会SQL语言数据查询功能的丰富和复杂。[实验内容]SQL数据查询语句:例3-1:(子查询)求与‘刘晨’年龄相同的学生的姓名和系。selectsname,sdeptfromstudentwhereSagein(selectSagefromstudentwhereSname='刘晨')andsname'刘晨';例3-2:(子查询)求选修了课程名为’数据结构’的学生的学号和姓名。selectsno,snamefromstudentwheresnoin(selectsnofromscwherecnoin(selectcnofromcoursewherecname='数据结构'));例3-3:(子查询ANY)求比数学系中某一学生年龄大的学生的姓名和系。selectsname,sdeptfromstudentwheresageany(selectsagefromstudentwheresdept='ma')andsdept'ma';例3-4:(子查询ALL)求比数学系中全体学生年龄大的学生的姓名和系。selectsname,sdeptfromstudentwheresageall(selectsagefromstudentwheresdept='ma');例3-5:(子查询EXISTS)求选修了课程004的学生的姓名和系。selectsname,sdeptfromstudentwhereexists(select*fromscwheresno=student.snoandcno='004');例3-6:(返回多列的子查询)求与‘刘晨’同系且同龄的学生的姓名和系。selectsname,sdeptfromstudentwheresage=(selectsagefromstudentwheresname='刘晨')intersectselectsname,sdeptfromstudentwheresdept=(selectsdeptfromstudentwheresname='刘晨')andsname'刘晨';例3-7:(多个子查询)求与‘刘晨’同系,且年龄大于‘李小飞’的学生的信息。select*fromstudentwheresdept=(selectsdeptfromstudentwheresname='刘晨')intersectselect*fromstudentwheresage(selectsagefromstudentwheresname='李小飞');例3-8:(子查询中使用表连接)求数学系中年龄相同的学生的姓名和年龄。selectdistinctfirst.sname,first.sagefromstudentfirst,studentsecondwherefirst.sdept='ma'andfirst.sage=second.sage;例3-9:(嵌套与分组查询)检索选修某课程的学生人数多于3人的这门课的课程名。selectcnamefromCoursewhereCno=(selectcnofromscgroupbycnohavingCOUNT(*)3);没有选修某课程的学生人数多于3人的课程,故没有找出符合条件的例3-10:(集合查询)列出所有同学的姓名和性别。selectSname,ssexfromstudent;例3-11:(相关子查询)求未选修课程004的学生的姓名。selectsnamefromstudentwhereSnoin(selectdistinctsnofromscexceptselectsnofromSCwhereCno='004');例3-12:(相关子查询
本文标题:数据库实验三-实验九含参考答案
链接地址:https://www.777doc.com/doc-5410213 .html