This query:
SELECT COUNT(source) AS count FROM call_details GROUP BY source HAVING count >1
Returns about 1500 (the number I\'m looking
Try this
select mycount, sum(mycount) as sumcount from (SELECT COUNT(source) AS mycount FROM call_details GROUP BY source HAVING mycount >1) counttable