How to Query/Fetch all accounts which are associated with a particular email id in Contacts to Multiple Accounts Relationship? January 24, 2022June 9, 2022InfallibleTechie Admin Sample Contact Record: SOQL: SELECT Id, AccountId, Account.Name FROM AccountContactRelation WHERE ContactId IN (SELECT Id FROM Contact WHERE Email = ‘[email protected]’ ) Output: