题解 | SQL14 SQL类别高难度试卷得分的截断平均值

用一个计算公式:

2\frac{总数-最大值-最小值}{总个数-2} 就是最终的答案。

select 
tag,
difficulty,
round((sum(score) - max(score) -min(score)) / (count(score) - 2), 1) as clip_avg_score
from examination_info as t1
join exam_record as t2
where t1.exam_id = t2.exam_id and tag = 'sql'
group by tag, difficulty
having difficulty = 'hard';
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务