I am trying to count all the values in a column....than add them together to get a total.
The below code.....gives me the numbers I need....but I do not know how to take these numbers....and add them together to get a total. I tried using SUM but no luck. Any ideas?
SELECT sender_name,COUNT(sender_name) as bubba from recipients GROUP BY sender_name