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
minnuchcloud@gmail.comminnuchcloud@gmail.com 

How to write a Query

 

How to write a Query to find Customer name if Branch is located in their City.
Relationship is parent to child

 

salesforce1#salesforce1#

Hi

 

can you try this

 

Select CustomerName__c, (Select CustomerName__c FROM Branch__r) FROM City__C;

 

Regads.