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

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

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


select 
    uid,
    exam_id,
    round(avg(norm_score) ,0)as avg_new_score
from

(
    select
    er.uid,
    ei.exam_id,
    ifnull((score - min(score) over(partition by ei.exam_id)) /
(max(score) over(partition by ei.exam_id)-min(score) over(partition by ei.exam_id))*100 ,score)
    as norm_score
from exam_record er
inner join examination_info ei
on er.exam_id=ei.exam_id

where ei.difficulty='hard' and er.submit_time is not null

) norm_score_t

group by uid,exam_id
order by exam_id, avg_new_score desc;

#打工人的精神状态##总结:哪家公司面试体验感最好#
全部评论

相关推荐

01-19 12:48
门头沟学院 C++
只想搞钱的鸽子很喜欢...:混账是很多的,还有那些在自己风华正茂的年纪说风凉话讥讽那些下岗前员工的。这些人都是现在职场环境这么烂的帮凶
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务