Saleforce retrieving fields from two different objects - (SOQL) Simple Salesforce Python
问题 I am using simpleSalesforce library for python to query SalesForce. I am looking at two different object in SalesForce: Account and Backend (parent-child). The Id in account matches the records of Backend through acc_id I am trying to do this: sf.query_all("SELECT AccEmail__c, (select custid from Backend__c) from Account where Id in (select acc_id from Backend__c where custid LIKE '%CUST%')") But I get the response showing: Malformed request - didn't understand the relationship - in FROM part