Run this query to see a list of duplicate contact names.
- Navigate to Settings\System\SQL
- Paste in the below query
- Click Execute to view list or Export to export to CSV
SELECT Name FROM Contacts GROUP BY Name HAVING COUNT(*) > 1
Modified on: Tue, 3 Oct, 2023 at 11:33 AM
Run this query to see a list of duplicate contact names.
SELECT Name FROM Contacts GROUP BY Name HAVING COUNT(*) > 1
Did you find it helpful? Yes No
Send feedback