SELECT YEAR(start_date) AS 'year', MONTH(start_date) AS 'month', COUNT(*) AS amount FROM Reservations GROUP BY 1, 2 ORDER BY 1, 2;