聚合函数
- 为了快速得到统计数据,经常会用到如下5个聚合函数
- count(*)表示计算总行数,括号中写星与列名,结果是相同的
- 聚合函数不能在 where 中使用
例1:查询学生总数
select count(*) from students;
- max(列)表示求此列的最大值
例2:查询女生的最大年龄
select max(age) from students where sex='女';
- min(列)表示求此列的最小值
例3:查询1班的最小年龄
select min(age) from students;
- sum(列)表示求此列的和
例4:查询北京学生的年龄总和
select sum(age) from students where hometown='北京';
- avg(列)表示求此列的平均值
例5:查询女生的平均年龄
select avg(age) from students where sex='女'
练习:
1、查询所有学生的最大年龄、最小年龄、平均年龄
2、一班共有多少个学生
3、查询3班年龄小于18岁的同学有几个