msql 统计函数 and 分组统计
Posted 王者之笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了msql 统计函数 and 分组统计相关的知识,希望对你有一定的参考价值。
平均数
select avg(shop_price) from goods;
求最大最小
select min(shop_price) from goods;
select max(shop_price) from goods;
求行数
select count(*) from goods;
分组统计
group 是需要耗费资源的 会有排序
slect cat_id,avg(shop_price) from goods group by cat_id;
select cat_id,count(*) from goods group by cat_id;
select cat_id,max(good_price)) from goods group by cat_id;
以上是关于msql 统计函数 and 分组统计的主要内容,如果未能解决你的问题,请参考以下文章
pandas使用groupby函数按照多个分组变量进行分组聚合统计使用agg函数计算分组的多个统计指标(grouping by multiple columns in dataframe)
R语言dataframe分组数据汇总(aggregate and sum):类似于excel的sumif函数
pandas使用groupby函数基于指定分组变量对dataframe数据进行分组使用agg函数计算每个分组不同数值变量的聚合统计值agg参数为字典指定不同变量的聚合计算统计量的形式