数据库相关嵌套子查询
selectsno,cnofromscxwheregrade>=(selectavg(grade)fromscywherey.sno=x.sno)这是一个嵌套的子查询,目...
select sno,cno
from sc x
where grade>=(select avg(grade) from sc y where y.sno=x.sno)
这是一个嵌套的子查询,目的是:找出每个学生超过他选修课程平均成绩的课程号
他的执行的步骤是什么?
sno cno grade
200215121 1 92
200215121 2 85
200215121 3 88
200215122 2 90
200215122 3 80 展开
from sc x
where grade>=(select avg(grade) from sc y where y.sno=x.sno)
这是一个嵌套的子查询,目的是:找出每个学生超过他选修课程平均成绩的课程号
他的执行的步骤是什么?
sno cno grade
200215121 1 92
200215121 2 85
200215121 3 88
200215122 2 90
200215122 3 80 展开
2个回答
展开全部
先执行(select avg(grade) from sc y where y.sno=x.sno) ,获得平均成绩。
在执行:
select sno,cno
from sc x
where grade>='平均成绩'
在执行:
select sno,cno
from sc x
where grade>='平均成绩'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询