资源描述:
《数据库第三章作业讲评.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第三章作业讲评1.对于下述三个关系:S(S#,Sn,Sa,Sex),C(C#,Cn,Cteacher,Credit),SC(S#,C#,Grade)使用SQL语句表达下列查询请求:(1)检索学号比wang同学大,而年龄比他小的学生姓名SelectSnfromSwhereS#>(selectS#fromSwhereS.Sn=‘wang’)andSa<(selectSafromSwhereS.Sn=‘wang’)SelectS1.SnfromSS1,SS2whereS1.S#>S2.S#andS1.Sa
2、all(selectSafromSwhereSe
3、x=‘女’)andSex=‘男’第三章作业讲评(4)查询1984--1986年出生的学生的学号、总平均成绩及已修学分数。(5)检索全部学生都选修的课程号和课程名SelectS.S#,avg(Grade),sum(Credit)fromS,C,SCwhereSC.C#=C.C#andSC.S#=S.S#andYear(Getdate())-Sabetween1984and1986groupbyS.S#SelectC#,CnfromCwherenotexits(select*fromSwherenote
4、xists(select*fromSCwhereSC.S#=S.S#andSC.C#=C.C#))第三章作业讲评(6)检索至少选修两门课程的学生姓名(7)检索王同学不学的课程的课程号和课程名SelectSnfromS,SCwhereS.S#=SC.S#groupbySnhavingcount(C#)>=2SelectSnfromSwhereS#in(selectS#fromSCgroupbySnhavingcount(C#)>=2)SelectC#,CnfromCwhereC#notin(selec
5、tC#fromSCwhereS#in(SelectS#fromSwhereSn=‘wang’))SelectC#,CnfromCwherenotexists(select*fromSC,SwhereSC.C#=C.C#andSC.S#=S.S#,S.Sn=‘wang’)(SelectC#,CnfromC)except(selectSC.C#,CnfromSC,C,SwhereSC.C#=C.C#andSC.S#=S.S#andS.Sn=‘wang’)第三章作业讲评SelectC#,CnfromCwh
6、erenotexists(select*fromSC,SwhereSC.C#=C.C#andSC.S#=S.S#andS.Sn=‘wang’)SelectC#,CnfromCwhereC#notin(selectC#fromSC,SwhereSC.S#=S.S#andS.Sn=‘wang’)第三章作业讲评(8)检索Li老师所授课程的课程号和课程名(9)统计开设课程的教师人数SelectC#,CnfromCwhereCteacher=‘Li’Selectcount(distinctCteacher)f
7、romC第三章作业讲评(10)检索姓名以L开头的所有学生的姓名和年龄(11)求每个学生选修课程(已有成绩)的门数和平均成绩SelectSn,SafromSwhereSnlike‘L%’Selectcount(C#),avg(grade)fromSCwheregradeisnotnullgroupbyS#第三章作业讲评(12)查询所学每一门课程成绩均不低于该课程平均成绩的学生姓名及相应课程号。SelectSn,C#fromS,SCXwhereS.S#=X.S#andgrade>=(selectavg(
8、grade)fromSCYwhereX.C#=Y.C#)第三章作业讲评2.针对教材P75的SPJ数据库,完成以下查询:(1)找出北京的任何工程都不购买的零件号SelectPNOfromPwherePNOnotin(selectPNOfromSPJ,JwhereSPJ.JNO=J.JNOandCity=‘北京‘)(SelectPNOfromP)except(selectPNOfromSPJ,JwhereSPJ.JNO=J.JNOandCity=‘北京‘)SelectPN