常见的聚合函数
将一列数据作为一个整体,进行纵向计算。
函数 | 功能 |
---|---|
count | 统计数量 |
max | 最大值 |
min | 最小值 |
avg | 平均值 |
sum | 求和 |
语法
SELECT 聚合函数 (字段列表)FROM 表名;
示例
这是我们的原始表:
求人物总数
select count(id) from information;
求年龄最大值:
select max(age) from information;
求年龄平均值:
select avg(age) from information;
求年龄总和:
select sum(age) from information;