常用集函数,count(),sum(),avg(),max(),min()

时间:2022-09-23 13:10:28

1. count()

  查询学生总人数。

 select  count(*)  from  s

 count(*)表示对元组或记录计数。

2.sum()

 

 

 

 返回组中所有值的和。sum只能用于数字列,空值会被忽略!

3.avg()

返回组中值的平均值,空值回避忽略!

4.max()

返回组中值的最大值

5.min()

返回组中值的最小值

6.计算c1课程的学生人数、最高成绩、最低成绩及平均成绩

 select count(*),max(score),min(score),avg(score) from sc where cno='c1'


数据库表s,c,sc截图请到http://www.cnblogs.com/fuge/archive/2012/03/16/2400913.html