Java面试中出现率极高的数据库查询题有哪些
发表于:2025-11-10 作者:千家信息网编辑
千家信息网最后更新 2025年11月10日,这篇文章将为大家详细讲解有关Java面试中出现率极高的数据库查询题有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。基本表结构:teacher(tno,tname
千家信息网最后更新 2025年11月10日Java面试中出现率极高的数据库查询题有哪些
这篇文章将为大家详细讲解有关Java面试中出现率极高的数据库查询题有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
基本表结构:
teacher(tno,tname) 教师表
student(sno,sname,sage,ssex)学生表
course(cno,cname,tno) 课程表
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 studentwhere sno not in (select distinct(sc.sno) from sc,course,teacherwhere 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
关于Java面试中出现率极高的数据库查询题有哪些就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
学号
查询
课程
姓名
同学
成绩
总成
总成绩
老师
李四
数据
数据库
学生
更多
篇文章
张三
不错
实用
相同
个数
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
软件开发所有权属于委托方
2017国家网络安全
sql 数据库备份失败
春季高考网络安全
大兴区定制软件开发诚信服务
网络安全用微型基站
传奇人形怪数据库怎么设置
nas和服务器哪个快
数据库开发技术指标
dbf数据库修复
一次性付费永久服务器
网络技术专业能报二建吗
中国网络安全技术学院官网
2009年中国网络安全
网络安全导论教学
删除数据库中某个字段
征信数据库就是征信数据吗
创建数据库xsgl
mysql数据库并发安全
华融资产软件开发工资待遇
取数据库字段列描述
美国服务器租用
怪物猎人p2g数据库
成都网络安全宣传周方案
翼龙网络技术
物流信息技术的网络技术
数据库安全系统哪个好
我叫mt奇幻之旅数据库
苏州嵌入式软件开发靠谱吗
客户机与服务器优缺点