The following SQL statement
SELECT MONTH(start_date) month, name, SUM(pins) pins FROM Table GROUP BY MONTH(start_date), name WITH ROLLUP
Shou