题解 | #浙大不同难度题目的正确率#
浙大不同难度题目的正确率
http://www.nowcoder.com/practice/d8a4f7b1ded04948b5435a45f03ead8c
首先根据相同字段将三个表连接起来,用where筛选出浙江大学,然后用group by对题目难度进行分组,得到浙江大学不同难度下答题正确的个数,再除以浙江大学不同难度答题的总题数,最终得到结果,代码如下
select difficult_level,(sum(if(b.result='right',1,0))/count(b.question_id)) as correct_rate
from user_profile a right join question_practice_detail b on a.device_id=b.device_id left join question_detail c on b.question_id=c.question_id
where university='浙江大学' group by difficult_level order by correct_rate

