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

Zählen Sie pro Geschäftsjahr eindeutig und zeigen Sie alle Daten im Abfrageergebnis an

Ich habe Ihre Anfrage wie folgt aktualisiert:

SELECT
order_date,
SUM(rn = 1) AS quantity
FROM 

  (SELECT 
  order_date, 
  row_number() over(PARTITION BY YEAR(order_date - INTERVAL 2 MONTH), customerID ORDER BY order_date) rn
  FROM customers
  ) t
  
GROUP BY 1;