select tag ,difficulty ,round(avg(score),1) as clip_avg_score from ( select tag ,score ,difficulty ,a.exam_id ,rank()over(partition by exam_id order by score desc) as score1 ,rank()over(partition by exam_id order by score ) as score2 from examination_info a join exam_record b on a.exam_id =b.exam_id...