最小值
select min(score) from dbo.Table_3;

最大值
select max(score) from dbo.Table_3;

求总数
select count(*) from dbo.Table_3;

求合格人数
select count(1) from dbo.Table_3 where score>=60;

求总人数
select count(1) from dbo.Table_3;

聚合函数聚合函数

相关文章:

  • 2021-12-09
  • 2021-11-19
  • 2021-09-05
  • 2021-07-11
  • 2021-06-12
  • 2022-03-02
猜你喜欢
  • 2021-09-07
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案