分组函数主要用作统计,又称为聚合函数或统计函数。基本的思想是给其传递一组值,经过统计和处理,最后输出的是一个值。
常见分组函数,sum()求和、avg()平均值、min()最小值、max最大值、count()计算个数。
函数使用,
sum(需要统计的字段),将字段中的所有值进行求和输出一个值。
例如:对手续费进行求和。charge_daily(当日手续费)、fpamt(分配手续费)
select sum(charge_daily) from ag_prod_sellfee_month where prod_code = ‘ ‘ and trade_date >= ‘ ‘ and trade_date <= ‘ ‘;
select sum(fpamt),businesskindcode, tradecode, agentcorpcode, begindate, enddate from fd_charge_note where xzbatchserial=‘ ‘ order by businesskindcode, tradecode, agentcorpcode, begindate, enddate