开发者社区> 问答> 正文

优化

已解决

select SId,Sname,avg(score) from student as a  join sc  as b on  a.sid=b.sid group by a.sid having avg(score)>=60

展开
收起
1096548036803731 2019-02-16 20:36:04 485 0
1 条回答
写回答
取消 提交回答
  • 采纳回答
    select student.SId,sname,ss from student,(
        select SId, AVG(score) as ss from sc  
        GROUP BY SId 
        HAVING AVG(score)> 60
        )r
    where student.sid = r.sid;
    2019-02-16 20:37:11
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Blade优化技术在广告计算中的应用优化 立即下载
如何做小程序性能优化 立即下载
图计算优化技术探索 立即下载