问:使用with字句重用子查询,显示院系分数总和高于学生分数总和的三分之一的院系名及分数总和

image.png

FineReport 学习2 发布于 2022-2-19 00:45
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
snrtuemcLv8专家互助
发布于2022-2-19 07:55(编辑于 2022-2-19 08:08)

with summary as  (select dname,sum(Score) as dept_total  from stu,dept                where stu.deptno=dept.deptno  group by dname )               

select dname,dept_total from summary where dept_total> (select sum(dept_total)*1/3 from summary );

  • 2关注人数
  • 238浏览人数
  • 最后回答于:2022-2-19 08:08
    请选择关闭问题的原因
    确定 取消
    返回顶部