oracle中的聚合函数count、max、min、sum、avg以及NVL函数的用法
分组函数聚合函数对一组行中的某个列执行计算执行计算并返回单一的值。聚合函数忽略空值。聚合函数经常与 SELECT 语句的 GROUP BY 子句一同使用,所以有的时候也把其称之为分组函数。这类函数通常应用于报表统计中,以下展示Oracle常用的聚合函数的应用。
分组函数的介绍 作用于一组数据,并对一组数据返回一个值.
常见的分组函数有:
Count
用来计算有效数据的数量
Min
返回一个数字列或计算列的最小值
select gi.ID, gi.game_instance_name, gi.draw_no, gi.draw_date, count(*) ticketNumber, nvl(min(tt.total_bets), nvl(min(tt.total_amount), from te_bg_ticket tt, BG_GAME_INSTANCE gi, game g where tt.BG_GAME_INSTANCE_ID = gi.ID and gi.game_id = g.game_id and gi.status = and tt.ticket_type = and tt.is_count_in_pool = and g.game_id = and g.game_type_id = groupby gi.ID, gi.game_instance_name, gi.draw_no, havingcount(*) > orderby gi.draw_no |
Max
返回一个数字列或计算列的最大值
和最小值用法一样
Sum
返回一个数字列或计算列总和
select gi.ID, gi.game_instance_name, gi.draw_no, gi.draw_date, count(*) ticketNumber, nvl(sum(tt.total_bets), nvl(sum(tt.total_amount), from te_bg_ticket tt, BG_GAME_INSTANCE gi, game g where tt.BG_GAME_INSTANCE_ID = gi.ID and gi.game_id = g.game_id and gi.status = and tt.ticket_type = and tt.is_count_in_pool = and g.game_id = and g.game_type_id = groupby gi.ID, gi.game_instance_name, gi.draw_no, havingcount(*) > orderby gi.draw_no |
avg
返回一个数字列或计算列的平均值
用法和Max,min,Sum一样
NVL函数
NVL(expr1,expr2) 如果oracle第一个参数为空那么显示第二个参数的值,如果第一个参数的值不为空,则显示第一个参数本来的值。