Last active
February 12, 2022 13:43
-
-
Save sudhakar6/099192b540cb30d3db2db8eab088721c to your computer and use it in GitHub Desktop.
SOQL Queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Query duplicate record based on a field: | |
Field: Account.Email__c | |
SELECT Email__c, COUNT(Id) FROM Account GROUP BY Email__c HAVING COUNT(Id) > 1 ORDER BY Count(ID) DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment