I have a query and I want to get the overall Sum of the values returned for NumberDuplicates in below query:
SELECT FirstName, LastName, COUNT() AS NumberDuplicates
FROM CitizenContactJ
GROUP BY FirstName, LastName
HAVING (COUNT() > 1)
ORDER BY FirstName
anyone know how to do this?