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

mysql gruppierung nach wochen

Wenn Sie the_date speichern als Integer, müssen Sie es zuerst mit FROM_UNIXTIME in datetime umwandeln Funktion:

 SELECT SUM(`amount_sale`) as total 
FROM `sales` 
WHERE `payment_type` = 'Account' 
GROUP BY WEEK(FROM_UNIXTIME(`the_date`))  

AKTUALISIEREN :
Sie möchten vielleicht auch die Wochennummer ausgeben,

SELECT CONCAT('Week ', WEEK(FROM_UNIXTIME(`the_date`))) as week_number,
SUM(`amount_sale`) as total 
FROM `sales` 
WHERE `payment_type` = 'Account' 
GROUP BY WEEK(FROM_UNIXTIME(`the_date`))