I have a table that looks like this:
id,created,action 1,'2011-01-01 04:28:21','signup' 2,'2011-01-05 04:28:21','signup' 3,'2011-02-02 04:28:21','signup'
How do I select and group these so the output is:
year,month,total 2011,1,2 2011,2,1
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Try this:
SELECT DATE_FORMAT(created, '%Y') as 'year', DATE_FORMAT(created, '%m') as 'month', COUNT(id) as 'total' FROM table_name GROUP BY DATE_FORMAT(created, '%Y%m')
Method 2
SELECT YEAR(created) as year_val, MONTH(created) as month_val ,COUNT(*) as total FROM testing GROUP BY YEAR(created), MONTH(created)
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0