/* Which month is the most popular in terms of taking classes */

select month, month_name, count(*)
from grade join dates using(date_id)  
group by month, month_name
order by month;