GROUP and ADD
Posted: Mon May 27, 2013 1:33 pm
Is the anyways for me to group by a certain column and then add the value of another column? In my example code I would like to add the values of `blah_value`
SELECT
`blah_value` AS `value`
FROM `blahs`
GROUP BY `blah_name`
EDIT: NVM I figured it out
SELECT
SUM(value)
FROM `blahs`
GROUP BY `blah_name`