Was this helpful?
Returns the Nth percentile of the group using algorithm.
percentileest(colName, percentile)
These examples are based on the .
This section contains reference documentation for the percentileest function.
select percentileest(homeRuns, 50) AS value from baseballStats
0
select percentileest(homeRuns, 80) AS value from baseballStats
4
select percentileest(homeRuns, 99.9) AS value from baseballStats
46