function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Gunnam RamGunnam Ram 

SOQL query help???.

I have Contact object and Address Object. Address is related to Contact using LOOKUP. I can create many number of duplicate ADDRESS records under 1 contact. My requirement is to query the address object to get all duplicate records under 1 contact. please suggest.
Dilip_VDilip_V
Ram,

1.I think you can't do that using single query.
2.First get all address related to contact then look for duplicates using for loop.


Thanks.