select level,count(level) as level_cnt from user_info where uid in(select uid from exam_record where score>80 and exam_id in(select exam_id from examination_info where tag='SQL' )) group by level order by level_cnt desc;