PERCENTILE_DISC()
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_DISC(0.5) WITHIN GROUP (ORDER BY b)
OVER (PARTITION BY a) AS pc
FROM t1;
+------+------+
| a | pc |
+------+------+
| 1 | 3 |
| 1 | 3 |
| 2 | 6 |
| 3 | 9 |
| 3 | 9 |
| 4 | 8 |
| 5 | 6 |
| 5 | 6 |
| 6 | 4 |
| 7 | 2 |
| 7 | 2 |
| 8 | 2 |
| 9 | 5 |
| 9 | 5 |
| 10 | 1 |
+------+------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.