查询Score表中至少有5名学生选修的并以3开头的课程的平均分数:

select avg(degree),cno
from score
where cno like '3%'
group by cno
having count(sno)>= 5;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-21
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-26
  • 2022-01-05
  • 2021-04-18
  • 2022-12-23
  • 2021-09-15
  • 2022-01-08
  • 2021-06-16
相关资源
相似解决方案