HQL案例大全之1. 查询没有学全所有课的学生的学号、姓名(特殊:应该先连接,在筛选)
表数据说明:一共是4张表
需求是:查询没有学全所有课的学生的学号、姓名.
前提:得对表业务数据熟悉业务含义,表结构,表关联,表字段,表内容。
1.错误的方法
常规分析:(此方法是错误的)
1.查询总共有几门课
2.从分数表去统计每个学生学了几门课
select
stu_id,
count(*) ct
from score_info
group by stu_id
having count(*) < (select count(course_id) from course_info )
3.然后主表在去left join 1和2中的表
select
t1.stu_id,
t2.stu_name
from student_info t1
left join (select
stu_id,
count(*) ct
from score_info
group by stu_id
having count(*) < (select count(course_id) from course_info ))t2
on t1.stu_id = t2.stu_id
这样写,结果是错误的。
1.分数表当中,有可能有的同学没用选课,导致该同学没用统计到(inner join)
2.有的不符合数据给展示出来了(left join方式)
2.正确的方法
1.先连接
学生表和分数表相连接
select
*
from student_info t1
left join score_info t2
on t1.stu_id = t2.stu_id
2.后过滤
select
t1.stu_id,
t1.stu_name,
count(t2.course_id) ct
from student_info t1
left join score_info t2
on t1.stu_id = t2.stu_id
group by t1.stu_id ,t1.stu_name
having count(t2.course_id) < (select count(course_id) from course_info)
原文地址:https://blog.csdn.net/Jackson_mvp/article/details/140399437
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!