I have this table:
+----+---------------------+---------+---------+
| id | date | amounta | amountb |
+----+---------------------+---------+---------+
| 1 | 2014-02-28 05:58:41 | 148 | 220 |
+----+---------------------+---------+---------+
| 2 | 2014-01-20 05:58:41 | 50 | 285 |
+----+---------------------+---------+---------+
| 3 | 2014-03-30 05:58:41 | 501 | 582 |
+----+---------------------+---------+---------+
| 4 | 2014-04-30 05:58:41 | 591 | 53 |
+----+---------------------+---------+---------+
| 5 | 2013-05-30 05:58:41 | 29 | 59 |
+----+---------------------+---------+---------+
| 6 | 2014-05-30 05:58:41 | 203 | 502 |
+----+---------------------+---------+---------+
I want to sum all the columns of each row where year = 2014 and up to month = 3 (Jan, Feb, Mar).
EDIT:
I do not want to select quarterly. I want to be able to select between months. From Jan to Apr, or from Mar to Sep for example.
How can I perform this?