您的位置:首页 > 文旅 > 美景 > mysql-sql-第十五周

mysql-sql-第十五周

2024/12/25 12:09:57 来源:https://blog.csdn.net/abend11/article/details/137345639  浏览:    关键词:mysql-sql-第十五周

学习目标:

sql

学习内容:

41.查询没有学全所有课程的同学的信息

select *from students where students.stunm not in (select score.stunm from score group by score.stunm having count(score.counm)= (select count(counm) from course))

在这里插入图片描述
42.查询至少有一门课与学号为" 1001 "的同学所学相同的同学的信息

select * from students left join score on students.stunm=score.stunm where students.counm in (Select score.counm from score where score.stunm=‘1001’);

在这里插入图片描述

select * from students left join score on students.stunm=score.stunm where score.counm in (Select score.counm from score where score.stunm=‘1001’);

在这里插入图片描述

Select distinct students.* from students left join score on students.stunm=score.stunm where counm in (select counm from score where score.stunm =‘1001’)

在这里插入图片描述

Select distinct s.* from students s left join score sc on s.stunm=sc.stunm where counm in (select counm from score where stunm=‘1001’) and s.stunm != ‘1001’

在这里插入图片描述

学习时间:

1月-3月,每天一小时左右

学习产出:

一周一发

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com