找到了 谢谢
SELECT '第一次考核',COUNT(学号) FROM table where 第一次考核>=(SELECT avg(第一次考核) FROM table )
union all
SELECT '第二次考核',COUNT(学号) FROM table where 第二次考核>=(SELECT avg(第二次考核) FROM table )
union all
SELECT '第三次考核',COUNT(学号) FROM table where 第三次考核>=(SELECT avg(第三次考核) FROM table )