百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>数据库> Java面试中涌现率极高的数据库查询题
分享文章到:

Java面试中涌现率极高的数据库查询题

发布时间:08/01 来源:未知 浏览: 关键词:
阅历过面试的程序员都晓得,面试历程中面试官可能对你问出离奇曲折的题目,但万变不离其宗,终归也是要问道重点上来,比方像是某一工作的根本操纵步骤以及代码的怎样编写等等,本文讲的就是最最经典的数据库查扣问题。 阅历过面试的程序员都晓得,面试历程中面试官可能对你问出离奇曲折的题目,但万变不离其宗,终归也是要问道重点上来,比方像是某一工作的根本操纵步骤以及代码的怎样编写等等,本文讲的就是最最经典的数据库查扣问题。

sc(sno,cno,score) 成绩表

NO.1查询课程1的成绩比课程2的成绩高的所有学生的学号

select a.sno from(select sno,score from sc where cno=1) a,(select sno,score from sc where cno=2) bwhere a.score>b.score and a.sno=b.sno

NO.2查询均匀成绩大于60分的同窗的学号和均匀成绩

select a.sno as "学号", avg(a.score) as "均匀成绩" from(select sno,score from sc) a group by sno having avg(a.score)>60

NO.2查询所有同窗的学号、姓名、选课数、总成绩

select a.sno as 学号, b.sname as 姓名,count(a.cno) as 选课数, sum(a.score) as 总成绩from sc a, student bwhere a.sno = b.snogroup by a.sno, b.sname

或者:

selectstudent.sno as 学号, student.sname as 姓名, count(sc.cno) as 选课数, sum(score) as 总成绩from student left Outer join sc on student.sno = sc.snogroup by student.sno, sname

NO.3查询姓“张”的老师的个数

selectcount(distinct(tname)) from teacher where tname like '张%‘

或者:

select tname as "姓名", count(distinct(tname)) as "人数" from teacher where tname like'张%'group by tname

NO.4查询没学过“张三”老师课的同窗的学号、姓名

select student.sno,student.sname from student
where sno not in (select distinct(sc.sno) from sc,course,teacher
where sc.cno=course.cno and teacher.tno=course.tno and teacher.tname='张三')

NO.5查询同时学过课程1和课程2的同窗的学号、姓名

select sno, sname from studentwhere sno in (select sno from sc where sc.cno = 1)and sno in (select sno from sc where sc.cno = 2)

或者:

selectc.sno, c.sname from(select sno from sc where sc.cno = 1) a,(select sno from sc where sc.cno = 2) b,student cwhere a.sno = b.sno and a.sno = c.sno

或者:

select student.sno,student.sname from student,sc where student.sno=sc.sno and sc.cno=1and exists( select * from sc as sc_2 where sc_2.sno=sc.sno and sc_2.cno=2)

NO.6查询学过“李四”老师所教所有课程的所有同窗的学号、姓名

select a.sno, a.sname from student a, sc bwhere a.sno = b.sno and b.cno in(select c.cno from course c, teacher d where c.tno = d.tno and d.tname = '李四')

或者:

select a.sno, a.sname from student a, sc b,(select c.cno from course c, teacher d where c.tno = d.tno and d.tname = '李四') ewhere a.sno = b.sno and b.cno = e.cno

NO.7查询课程编号1的成绩比课程编号2的成绩高的所有同窗的学号、姓名

select a.sno, a.sname from student a,

(select sno, score from sc where cno = 1) b,

(select sno, score from sc where cno = 2) c

where b.score > c.score and b.sno = c.sno and a.sno = b.sno

NO.8查询所有课程成绩小于60分的同窗的学号、姓名

select sno,sname from studentwhere sno not in (select distinct sno from sc where score > 60)

NO.9查询至少有一门课程与学号为1的同窗所学课程雷同的同窗的学号和姓名

select distinct a.sno, a.snamefrom student a, sc bwhere a.sno <> 1 and a.sno=b.sno andb.cno in (select cno from sc where sno = 1)

或者:

select s.sno,s.sname from student s,(select sc.sno from scwhere sc.cno in (select sc1.cno from sc sc1 where sc1.sno=1)and sc.sno<>1group by sc.sno)r1where r1.sno=s.sno

以上就是面试数据库相干工作灰常有可能碰到的问题,赶快珍藏起来,好好看看吧!

【举荐课程:MYSQL学习视频】

以上就是Java面试中涌现率极高的数据库查询题的细致内容,更多请关注 百分百源码网 其它相干文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有152人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板