You need to sign in to do that
Don't have an account?

How do you a do SOQL from a custom object that has a master detail relastionship to Account object
I want to display some data from my custom object(Technology_product__c) using the id from the master-detail object(Account). Thank you in advance.
SELECT Name,(SELECT name FROM Technology_Product__r ) FROM Account WHERE Id='00105000002oNIyAAM'
SELECT Name,(SELECT name FROM Technology_Product__r ) FROM Account WHERE Id='00105000002oNIyAAM'
Requesting you to follow this article for reference -> https://www.sfdckid.com/2019/05/salesforce-soql-relationship-queries.html
Let me know if you still face any challenges .
Hope it helps !
Thank you.
All Answers
Requesting you to follow this article for reference -> https://www.sfdckid.com/2019/05/salesforce-soql-relationship-queries.html
Let me know if you still face any challenges .
Hope it helps !
Thank you.