create table t( col int );
insert into T (COL)
values (1);
insert into T (COL)
values (2);
insert into T (COL)
values (3);
insert into T (COL)
values (4);
insert into T (COL)
values (100);
insert into T (COL)
values (20);
commit;
所谓中位数是指:一组按大小顺序排列起来的数据中处于中间位置的数。当有奇数个(如17个)数据时,中位数就是中间那个数(第9个);当有偶数个(如18个)数据时,中位数就是中间那两个数的平均数(第九个和第十个相加除以二)。
SQL> select percentile_cont(0.5) within group (order by col) 中位数 from t;
中位数
----------
3.5
SQL> select median(col) As 中位数 from t;
中位数
----------
3.5