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

Soql Query Using two objects
I have two objects one is custom object (i.e.., bookingrequest__c)and another one is Account object.In Account object i have 6 customfields.How to access that 6fields in custom object using soql query.
If you are you can just do the following
Select Id, Account__r.fieldname from bookingrequest__c
Also this is the documentation you can refer to for SOQL Relationships:
https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_understanding.htm
Cheers