查询的分组与汇总
聚合函数
数量
1.select count(*)from 表名;
2.select count(0)from 表名;
3.select count(字段名)from 表名;
求和
select sum(字段名)from 表名;
平均值
select avg(字段名)from 表名;
1.select count(*)from 表名;
2.select count(0)from 表名;
3.select count(字段名)from 表名;
select sum(字段名)from 表名;
select avg(字段名)from 表名;