• srinivasarao Muppaneni
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
soql query to retrieve all accounts having more than 100 contacts in one query

[select id,name,(select accountid,count(id) from contact group by accountid having count(id)>100) from account]
Hi, I am having problems in undertaking one project, that's problem is mass edit record in custom object.
not selected edit, How can I mass edit all record for Related Custom object?
Examples:
User-added image
User-added image
User-added image

Thanks
soql query to retrieve all accounts having more than 100 contacts in one query

[select id,name,(select accountid,count(id) from contact group by accountid having count(id)>100) from account]