CUME_DIST
Returns the cumulative distribution of the current row with regard to other values within the same window partition.
Syntax
CUME_DIST() OVER ( [PARTITION BY partition_expression] [ORDER BY order_expression]) → double
partition_expression: An optional expression that groups rows into partitions.
order_expression: An optional expression that specifies the order of the rows within each partition.
Examples
CUME_DIST example
Usage Notes
This function does not support cumulative frame windows or sliding frame windows.
Last updated