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

Am running this query ...why it is not working i dont understand
Here am writing the parent -child query ...account parent and Entitlement is child...why it is not working..
select id,name,(select Entitlement.name,Entitlement.Status from entitlement) from account
Help me in this ...thanks in advance...
select id,name,(select Entitlement.name,Entitlement.Status from entitlement) from account
Help me in this ...thanks in advance...
All Answers
You can't access the child from the parent. It has to be the other way around. Access the parent from the child