题解 | #考试分数(四)#

考试分数(四)

http://www.nowcoder.com/practice/502fb6e2b1ad4e56aa2e0dd90c6edf3c

  1. 直接case when暴力做吧
with grade_rank as(
select job,
count(*) total
from grade group by job),

med_1 as(
select 
    job,
    case when total%2=1 then (total+1)/2
    when total%2<>1 then (total)/2 end,
    case when total%2=1 then (total+1)/2
    when total%2<>1 then (total)/2+1 end from grade_rank
)
SELECT * FROM MED_1
全部评论

相关推荐

一个非常好用的遍历方法
AomaYple:不是指针,是引用
点赞 评论 收藏
分享
11-09 12:17
清华大学 C++
out11Man:小丑罢了,不用理会
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务