这两句SQL怎么写

表格

Latty 发布于 2020-9-27 13:56 (编辑于 2020-10-9 16:41)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
指间沙Lv6中级互助
发布于2020-9-27 14:00(编辑于 2020-9-27 15:12)

SELECT num1-num2 from (

SELECT (select AVG(Grade) as num  from studentno where  COURSE='ENGLISH' AND ClassNo='CLASS1') as num1,

(select AVG(Grade) as num from studentno where ClassNo='class2' and COURSE='ENGLISH') as num2

)aa





SELECT COUNT(*) as num,ClassNo from www where Grade<(SELECT AVG(Grade) from www where COURSE='FRENCH') GROUP BY ClassNo

image.png



image.png



最佳回答
0
ysLv5见习互助
发布于2020-9-27 15:11(编辑于 2020-9-27 15:18)

试试这个

select 

(select avg(grade) from stscore  where classno='Class1' and course='English') -

(select avg(grade) from stscore  where classno='Class2' and course='English')


select s.classno,count(*) from stscore s, (

select classno,avg(grade) score from stscore  where course='French'  group by classno

) t

where s.classno=t.classno and s.course='French' and s.grade<t.score group by s.classno


  • 2关注人数
  • 411浏览人数
  • 最后回答于:2020-10-9 16:41
    请选择关闭问题的原因
    确定 取消
    返回顶部