sql >> Base de Datos >  >> RDS >> Mysql

Cuente los totales por año y mes

Prueba esto:

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')