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
Raghav Sharma 39Raghav Sharma 39 

Considering a one to one relationship, can we write an soql query to fetch only those accounts where billing country of contact is 'USA'

Best Answer chosen by Raghav Sharma 39
Raj VakatiRaj Vakati
Select Id , Account.Name from Contact where Contact.billingcountry='USA'