PERCENTILE_DISC
Computes a specific percentile for sorted values in a column.
Last updated
Was this helpful?
Computes a specific percentile for sorted values in a column.
Last updated
Was this helpful?
fraction: The fraction/percentile value to compute. The value for this must be a numeric literal in the range of 0 to 1 inclusive and represents a percentage.
order_by_expression: The expression to sort and compute the percentile. You can only provide one expression in the ORDER BY clause.
Examples
This function computes a specific percentile for sorted values in a column. For each percentile value, PERCENTILE_DISC
sorts the values using the ORDER BY
clause. The function then returns the value with the smallest value given that is greater or equal to the percentile value. For example, PERCENTILE_DISC (0.5)
computes the 50th percentile (the median) of an expression. The result is equal to a specific column value. This information was originally provided via .
This function is used with only numeric data types in Spice. NULL
values in the data set are ignored. However, passing NULL
as fraction or as order_by_expression will cause an error.