题解 | #对试卷得分做min-max归一化#

对试卷得分做min-max归一化

https://www.nowcoder.com/practice/2b7acdc7d1b9435bac377c1dcb3085d6

select 
min_max.uid,
min_max.exam_id,
round(avg(min_max.score),0) as avg_new_score
from
(
select 
er.uid,er.exam_id,
if(count(1) over(partition by er.exam_id)<>1, #若一个试卷只有一个分数,则直接输出该分数
((er.score-min(er.score) over(partition by er.exam_id))/
(max(er.score) over(partition by er.exam_id)-
min(er.score) over(partition by er.exam_id))) *100,er.score) as score
from examination_info ei 
left join exam_record er
on ei.exam_id=er.exam_id
where ei.difficulty='hard' and er.score is not null
) as min_max
group by min_max.exam_id,min_max.uid
order by min_max.exam_id,avg_new_score desc

全部评论

相关推荐

尊尼获获:闺蜜在哪?
点赞 评论 收藏
分享
11-24 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务