function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
LeeCLeeC 

SOQL - Basic Questions

Hello,

 

I am new to building SOQL querys so I would like to ask a coupe of questions:

 

1. I have downloaded Apex Explorer 8, am I able to create and deply my SOQL querys from here?

 

2. I have created the SOQL code which should use 2 look fields, depending on the account (store #) enter in one, the parent account name of the store should be displayed in the other lookup field

 

Account.Account.Name from Account where Account.SoteNumber != null

 

 

Thanks in advance,

 

Lee

aalbertaalbert

Are you trying to write Apex Code and include this SOQL query within the code? 

Apex Explorer is an open sourced tool to help you construct SOQL queries, execute those queries, and see your salesforce.com schema. Apex Explorer does not support deploying of code. I recommend checking out the Force.com IDE that has its own schema explorer as well as the ability to develop, test, and deploy Apex. 

 

Lastly, I don't think your soql query is correct. It does not include a SELECT statement.