EN
MySql - group rows by months
2
points
In this short article we would like to show how MySql group rows by months.
Sql example:
SELECT
COUNT(`creation_time`) AS `count`,
DATE_FORMAT(`creation_time`, '%Y-%m') AS `month`
FROM clients
GROUP BY YEAR(`creation_time`), MONTH(`creation_time`)
Note:
YEAR(`creation_time`)
prevents rows mixing when months come from different years.
Screenshot: