PERCENTILE_CONT()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
EXAMPLES
CREATE TABLE t1 (a INT, b INT);
INSERT INTO t1 VALUES
(1,3), (1,5), (8,2), (5,7), (5,6),
(10,1), (6,4), (3,9), (3,9), (7,2),
(7,5), (2,6), (9,10), (9,5), (4,8);
SELECT a,
PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY b)
OVER (PARTITION BY a) AS pc
FROM t1;
+------+--------------+
| a | pc |
+------+--------------+
| 1 | 4.0000000000 |
| 1 | 4.0000000000 |
| 2 | 6.0000000000 |
| 3 | 9.0000000000 |
| 3 | 9.0000000000 |
| 4 | 8.0000000000 |
| 5 | 6.5000000000 |
| 5 | 6.5000000000 |
| 6 | 4.0000000000 |
| 7 | 3.5000000000 |
| 7 | 3.5000000000 |
| 8 | 2.0000000000 |
| 9 | 7.5000000000 |
| 9 | 7.5000000000 |
| 10 | 1.0000000000 |
+------+--------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.