常见sql数据库面试题和答案(一)

常见sql数据库面试题和答案(一)

ID:30822149

大小:57.50 KB

页数:4页

时间:2019-01-03

常见sql数据库面试题和答案(一)_第1页
常见sql数据库面试题和答案(一)_第2页
常见sql数据库面试题和答案(一)_第3页
常见sql数据库面试题和答案(一)_第4页
资源描述:

《常见sql数据库面试题和答案(一)》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、常见SQL数据库面试题和答案(一)Student(S#>Sname,Sage,Ssex)学生表S#:学号;Sname:学生姓名;Sage:学生年龄;Ssex:学生性别Course(C#,Cname,T#)课程表C#,课程编号;Cname:课程名字;T#:教师编号SC(S#,C#,score)成绩表S#:学号;C#,课程编号;score:成绩Teacher(T#,Tname)教师表T#:教师编号;Tname:教师名字问题:1、查询“001”课程比“002”课程成绩高的所冇学生的学号;selecta.S#from(selects#,scorefromSCwhere

2、C#二'001')a,(selects#,scorefromSCwhereC#二'002,)bwherea.score>b.scoreanda.s#二b.s#;2、杳询平均成绩人于60分的同学的学号和平均成绩;selectS#,avg(score)fromscgroupbyS#havingavg(score)>60;3、查询所冇同学的学号、姓名、选课数、总成绩;selectStudent.S#,Student.Sname,count(SC.C#),sum(score)fromStudent1eftOuterjoinSConStudent.S#=SC.S#gro

3、upbyStudent.S#,Sname4、查询姓“李”的老师的个数;selectcount(distinet(Tname))fromTeacherwhereTnamelike'李%';5、查询没学过“叶平”老师课的同学的学号、姓名;selectStudent.S#,Student.SnamefromStudentwhereS#notin(selectdistinct(SC.S#)fromSC,Course,TeacherwhereSC.C#二Course.C#andTeacher.T#二Course.T#andTeacher.Tname二'叶平');6、查询

4、学过“001”并且也学过编号“002”课程的同学的学号、姓名;selectStudent.S#,Student.SnamefromStudent,SCwhereStudent.S#=SC.S#andSC.C#=OOPandexists(Select*fromSCasSC_2whereSC_2.S#二SC.S#andSC_2.C#='002');7、查询学过“叶平”老师所教的所有课的同学的学号、姓名;selectS#,SnamefromStudentwhereS#in(selectS#fromSC,Course,TeacherwhereSC.C#二Course.

5、C#andTeacher.T#二Course.T#andTeacher.Tname=,叶平'groupbyS#havingcount(SC.C#)=(selectcount(C#)fromCoui'se,TeacherwhereTeacher.T#=Course.T#andTname=,叶平'));8、查询课程编号“002”的成绩比课程编号“001”课程低的所冇同学的学号、姓名;SelectS#,Snamefrom(selectStudent.S#,Student.Sname,score,(selectscorefromSCSC_2whereSC_2.S#=S

6、tudent.S#andSC_2.C#二'002,)score2fromStudent,SCwhereStudent.S#=SC.S#andC#二'001')S_2wherescore260);10、查询没有学全所有课的同学的学号、姓名;selectStudent.S#,Student.SnamefromStuden

7、t,SCwhereStudent.S#=SC.S#groupbyStudent.S#,Student,.Snamehavingcount(C#)<(seiectcount(C#)fromCourse);11>査询至少有一门课与学号为“1001”的同学所学相同的同学的学号和姓名;selectS#,SnamefromStudent,SCwhereStudent.S#二SC.S#andC#inselectC#fromSCwhereS#二'100T;12、查询至少学过学号为“001”同学所有一门课的其他同学学号和姓名;selectdistinctSC.S#,Sname

8、fromStudent,SCwhere

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。