时间:2021-07-01 10:21:17 帮助过:10人阅读
2、查询出‘李诚’老师教的学生的最高成绩,结果显示:最高成绩的学生基本信息以及成绩
解题思路:
第1步:查询‘李诚’老师的tno
select tno from teacher where tname=‘李诚‘ #结果显示:804
第2步:已第1步的查询结果为条件,在course课程表中查找tno对应的cno课程编号
select cno from course where tno in(select tno from teacher where tname=‘李诚‘) #结果显示:3-245
第3步:已第2步的cno结果为第三步的条件,查找出cno课程编号在score成绩表中对应的成绩.此处为查看结果的正确性,在结果显示时添加了cno
select cno,degree from score where cno in (select cno from course where tno in(select tno from teacher where tname=‘李诚‘)) #查询结果:3-245对应的成绩有:86,75,68
第4步:第3步完成后,已经将‘李诚’老师教的学生成绩全部查出来了,根据题目要求,需要查找最高成绩,因此将第3步进行修改,需要用到max(查找最大)
select cno,max(degree) from score where cno in (select cno from course where tno in(select tno from teacher where tname=‘李诚‘))
第5步:以上4步已经将老师对应的学生最高成绩查询出来,剩一步为显示学生基本信息,需要用到student表,因此需要将score与student两个表关联起来,使用sno
select s.*,cno,max(degree) from score sc,student s where cno in (select cno from course where tno in(select tno from teacher where tname=‘李诚‘)) and s.sno = sc.sno;
#运行第5步显示的就是题目要求的结果
3、查询出4位老师,每个老师教的成绩最高的学生,结果显示:学生基本信息、老师基本信息、课程名称、成绩,并按成绩由高到低展示
#试题的解答案本宝宝已经列在下方,根据上面写的解题思路,将此答案进行理解就可以啦
select s.*,t.*,sc.cno,sc.degree from teacher t,course c,score sc , student s where sc.cno in(select cno from course where tno in(select tno from teacher)) and t.tno = c.tno and c.cno = sc.cno and s.sno = sc.sno group by sc.cno order by degree desc;
解题思路总结:
1、分解试题
2、查找分解试题之后所要对应的表
3、查找对应表之间的关联点
4、一步一步按照分解步骤实现,最后结果就出来啦
完事,本宝宝将mysql查询的解题思路写完了,解题思路梳理清楚,在难的查询题也不怕,公司目前就剩我一个人啦,赶紧跑回家~~端午节走起!
MYSQL-----使用select查询,解题思路总结---精髓!
标签:des 并且 idt 搜索 理解 sql查询 order 编号 ima