SQL查询选修了全部课程的学生姓名

查询选修了全部课程的学生姓名:student是学生表course是选课表sc是课程表selectsnamefromstudentwherenotexists(select... 查询选修了全部课程的学生姓名
:student 是学生表 course 是选课表 sc 是课程表
select sname
from student
where not exists
(select *
from course
where not exists
(select *
from sc
where sno =student.sno
and cno=course.cno)

select *
from course
where not exists
(select *
from sc
where sno =student.sno
and cno=course.cno)
这一段计算为什么就得出 某学生存在没有选的课程?
展开
 我来答
linchengwei136
2018-03-30 · TA获得超过1.2万个赞
知道小有建树答主
回答量:73
采纳率:100%
帮助的人:1万
展开全部

分析原因如下:

第一问:两个NOT EXISTS表示双重否定:没有一个选了课的学生没有选course表里的课程

select sname from student   where not exists /*没有一个学生满足以下条件*/

(select *   from course  where not exists  /*什么条件呢?没有选过Course表里的课*/

(select *  from sc  where sno =student.sno   /*这里两个=分别指对应的关系,表示选  

过课并且是Course里and cno=course.cno)  的课,只不过用not exists否定掉了*/

第二问:其实和NOT IN 是一个意思 exists只返回true 或false 这里not exists里的内容 其实就                     是指学生选过的课程,再用NOT EXISTS否定了,就变成了没有选

狠有毅毅
推荐于2017-11-25 · TA获得超过399个赞
知道答主
回答量:38
采纳率:100%
帮助的人:41.5万
展开全部
第一问:两个NOT EXISTS表示双重否定:没有一个选了课的学生没有选course表里的课程
select sname
from student
where not exists /*没有一个学生满足以下条件*/
(select * from course
where not exists /*什么条件呢?没有选过Course表里的课*/
(select * from sc
where sno =student.sno /*这里两个=分别指对应的关系,表示选过课并且是Course里and cno=course.cno) 的课,只不过用not exists否定掉了*/

第二问:其实和NOT IN 是一个意思 exists只返回true 或false 这里not exists里的内容 其实就是指学生选过的课程,再用NOT EXISTS否定了,就变成了没有选的
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
SoftWarezx
2012-06-25
知道答主
回答量:19
采纳率:0%
帮助的人:10.8万
展开全部
exists 是类似于in 效率比in 好的多
not exists 类似于 not in 效率一样比not in 一样好的多
再来看这个sql语句,应该明白了吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式