SQL数据库查询exists和in的用法问题
题目:检索王同学不学的课程的课程号其中Course属性:cno,cname,tnoSC属性:sno,cno,gradeStudent属性:sno,sname,sex,ag...
题目:检索王同学不学的课程的课程号
其中 Course属性:cno,cname,tno
SC属性:sno,cno,grade
Student属性:sno,sname,sex,age,class
用in查询:
select cno
from Course
where cno not in
(
select cno
from SC
where sno in
(
select sno
from Student
where sname like '王%'
)
)
用exists查询:
select cno
from Course
where not exists
(
select *
from SC
where sno in
(
select sno
from Student
where sname like '王%'
)
)
为什么用in查询的结果是正确的,用exists却是错误的,能说明原因吗?
谢谢!! 展开
其中 Course属性:cno,cname,tno
SC属性:sno,cno,grade
Student属性:sno,sname,sex,age,class
用in查询:
select cno
from Course
where cno not in
(
select cno
from SC
where sno in
(
select sno
from Student
where sname like '王%'
)
)
用exists查询:
select cno
from Course
where not exists
(
select *
from SC
where sno in
(
select sno
from Student
where sname like '王%'
)
)
为什么用in查询的结果是正确的,用exists却是错误的,能说明原因吗?
谢谢!! 展开
3个回答
展开全部
SQL语言中没有蕴函逻辑运算,利用谓词演算转换为:
p®q ÛØp∨q
关系式不太好打了就掠过了
select distinct cno
from Course
where not exists
(
select *
from Student,sc
where Student.sname like '王%'
and sc.sno=student.sno
and course.cno=student.cno
)
这个很久没写了如果错了请见谅。
p®q ÛØp∨q
关系式不太好打了就掠过了
select distinct cno
from Course
where not exists
(
select *
from Student,sc
where Student.sname like '王%'
and sc.sno=student.sno
and course.cno=student.cno
)
这个很久没写了如果错了请见谅。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
exists 里面貌似不能用select * 吧,要明确一个字段。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
什么问题,这俩速度都很快 不要用not 就好
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |