SELECT COUNT(grade) FROM table GROUP BY grade ORDER BY grade
Haven’t verified it, but it should work.It will not, however, show count for 6s grade, since it’s not present in the table at all…
SELECT COUNT(grade) FROM table GROUP BY grade ORDER BY grade
Haven’t verified it, but it should work.It will not, however, show count for 6s grade, since it’s not present in the table at all…