select difficult_level ,sum(case when result='right' then 1 else 0 end )/count(question_id) as correct_rate from( select a.device_id ,university ,b.question_id ,result ,difficult_level from( select device_id ,university from user_profile where university='浙江大学' )as a inner join ( select device_id ,q...