SELECT MONTHNAME(order_date) AS MonthName, COUNT(*) AS OrderCount
FROM orders
GROUP BY MONTHNAME(order_date);