Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Abfrage mit count und group by

Angenommen, Ihr Datum ist ein tatsächliches datetime Spalte:

SELECT MONTH(date), YEAR(date), id_publisher, COUNT(*)
FROM raw_occurrence_record
GROUP BY MONTH(date), YEAR(date), id_publisher

Sie können Ihren Monat und Ihr Jahr wie folgt verketten:

SELECT CONCAT(MONTH(date), '/', YEAR(date)) AS Month, id_publisher, COUNT(*)
FROM raw_occurrence_record
GROUP BY MONTH(date), YEAR(date), id_publisher

Um Monate zu finden, in denen keine Aufzeichnungen vorhanden sind, benötigen Sie eine Datumstabelle. Wenn Sie keine erstellen können, können Sie UNION ALL eine Kalendertabelle wie folgt:

SELECT a.year, a.month, b.id_publisher, COUNT(b.id_publisher) AS num
FROM
  (SELECT 11 AS month, 2012 AS year
   UNION ALL
   SELECT 12, 2012
   UNION ALL
   SELECT 1, 2013
   UNION ALL
   SELECT 2, 2013) a
LEFT JOIN raw_occurence_record b
  ON YEAR(b.date) = a.year AND MONTH(b.date) = a.month
GROUP BY a.year, a.month, b.id_publisher

Demo ansehen