50

Quick question, I have the following table

+-------------+---------------------+
| total       | o_date              |
+-------------+---------------------+
|          35 | 01-11-2009 19:32:44 | 
|        41.5 | 01-12-2009 22:33:49 | 
|        61.5 | 01-23-2009 22:08:24 | 
|          66 | 02-01-2009 22:33:57 | 
|       22.22 | 02-01-2009 22:37:34 | 
|       29.84 | 04-20-2009 15:23:49 | 
+-------------+---------------------+

I would like to add up the total for each month and group the total by month. So for instance Jan-> 138 Feb-> 88.2 Apr-> 29.84

Any clues about it. Thanks

6 Answers6

95

This solution will give you the month name as a column of your resultset, followed by the total as required.

SELECT MONTHNAME(o_date), SUM(total) 
FROM theTable
GROUP BY YEAR(o_date), MONTH(o_date)
Simon Fox
  • 10,409
  • 7
  • 60
  • 81
12
select year(o_date), month(o_date), sum(total)
from table
group by year(o_date), month(o_date);
Todd Gardner
  • 13,313
  • 39
  • 51
7

Get Month And Year wise data from MySQL database:

SELECT MONTHNAME(o_date), YEAR(o_date), SUM(total) 
FROM the_table 
GROUP BY YEAR(date), MONTH(date)
Dmitriy
  • 5,525
  • 12
  • 25
  • 38
Fazlul Haq
  • 71
  • 1
  • 1
2
SELECT year(FROM_UNIXTIME(created)) year, month(FROM_UNIXTIME(created)) month, sum(amount) total
FROM {my_table}
GROUP BY year, month
ORDER BY year, month;
hugronaphor
  • 948
  • 8
  • 23
2
SELECT SUM(total)
FROM table
GROUP BY MONTH(o_date)
James Skidmore
  • 49,340
  • 32
  • 108
  • 136
0

Try Group BY, like this:

select count(A_id) As Tid,Day(CrDate) from Ap Group By Day(CrDate)
gpgekko
  • 3,506
  • 3
  • 32
  • 35
umang
  • 1