select number from grade group by number having count(number) >=3

SELECT number FROM grade

GROUP BY number HAVING COUNT(number) >=3;