题解 | #考试分数(四)#
考试分数(四)
https://www.nowcoder.com/practice/502fb6e2b1ad4e56aa2e0dd90c6edf3c
用窗口函数解答该题
select job, round(if(n%2=1,rn,n/2)) as start, rn as end from (select *, row_number()over(partition by job order by score asc) as rn, count(1)over(partition by job) as n from grade) t1 where rn in ((n+1)/2,n/2+1) order by job asc
思路:各个岗位 分数 我们先用窗口函数构造两个辅助列 得到各个岗位的总人数,如果总人数是奇数,中位数是在(n+1)/2=rn=2 的位置上,如果总人数是偶数,分数的中位数,应该是n/2和n/2+1这两个的平均值,也就是中位数位置范围的起点和终点