Contact Duplicates

SELECT contactname,
       count(1) AS cnt
FROM tblcontact
GROUP BY Contactname
HAVING count(1) >1;