If I have a MySQL table such as:
I want to use SQL to calculate the sum of the PositiveResult column and also the NegativeResult colu
PositiveResult
NegativeResult
select keyword,sum(positiveResults)+sum(NegativeResults) from mytable group by Keyword
if you need the absolute value put sum(abs(NegativeResults)