--聚合函数
-- sum()
-- 求和
select sum(age) from student; -- count()
-- 求数量
-- 数据量
select count(*) as '数量' from student; -- max()
--最大值
select max(age) as '最大值' from student; -- min
-- 最小值
select min(age) as '最小值' from student; -- avg()
--求平均值
select avg(age) as '平均值' from student; --round()
--保留几位小数
select round(avg(age),2) as '平均值2位小数' from student; -- 综合查询
select sum(age)/count(age) as '平均值' from student;
相关文章
- 03-27SQL多表连接查询(详细实例)
- 03-27SQL中的max()函数用法
- 03-27flink table窗口聚合的open函数未调用的bug分析
- 03-27SQL 表连接查询出现重复列,由此理清LEFT JOIN、INNER JOIN的区别
- 03-27SQL update语句 更新和查询同一张表 冲突
- 03-27sql2008 查询字段所属表
- 03-27EF core的原生SQL查询以及用EF core进行分页查询遇到的问题
- 03-27reduce _ 高阶函数 之 聚合运算
- 03-27Flink实战(八十七):flink-sql使用(十四)Flink 与 hive 结合使用(六)Hive 函数
- 03-27Flink实战(八十七):flink-sql使用(十四)Flink 与 hive 结合使用(六)Hive 函数