作者:uka9032934 | 来源:互联网 | 2014-07-09 16:02
oracle聚合函数---percent_rank()和cume_dist()指定分组序列相对位置PERCENT_RANK(expr[,expr]...)WITHINGROUP(ORDERBYexpr[DESC|ASC][NULLS{FIRST|LAST}][,expr...Sy
oracle聚合函数---percent_rank()和cume_dist()指定分组序列相对位置
PERCENT_RANK ( expr [, expr]... ) WITHIN GROUP( ORDER BY
expr [ DESC | ASC ] [NULLS { FIRST | LAST }]
[, expr [ DESC | ASC ] [NULLS { FIRST | LAST }]]...)
返回指定数据在指定分组序列中所占的相对位置,不管指定值与分组序列中某值是否重复,均将此值视为序列一部分.
Sql代码
select percent_rank(2975) within group(order by scott.emp.sal) from scott.emp
www.2cto.com
CUME_DIST(expr[,expr]...) WITHIN GROUP(ORDER BY
expr [DESC | ASC] [NULLS {FIRST | LAST}]
[,expr [DESC | ASC] [NULLS {FIRST | LAST}]]...)
查询指定数值在指定分组序列中的相对位置,返回值是介于 0 和 1 之间的小数值。如果指定值与分组序列中某值重复,则将二值视为一个值处理。
Sql代码
select cume_dist(2975) within group(order by scott.emp.sal) from scott.emp