with l1 as ( select exam_id, tag, difficulty from examination_info where tag = 'SQL' and difficulty = 'hard' group by exam_id, tag, difficulty ), l2 as ( select * from exam_record where submit_time is not null ) select tag, difficulty, round(avg(score) ,1)as clip_avg_score from ( select tag, difficu...