You need to sign in to do that
Don't have an account?
Gauri Gaikwad 13
SOQL Query basic
I am trying to run SOQL query
code added in query editor
SELECT
First_Name__c
Experience__c
FROM
Indeed_COm_Job_Form__c
WHERE
Experience__c >1
and i am getting error as : Invalid query: The query has to start with 'FIND' or 'SELECT'.
but i have used SELECT word at beginning
code added in query editor
SELECT
First_Name__c
Experience__c
FROM
Indeed_COm_Job_Form__c
WHERE
Experience__c >1
and i am getting error as : Invalid query: The query has to start with 'FIND' or 'SELECT'.
but i have used SELECT word at beginning
Please check this
SELECT First_Name__c,Experience__c FROM Indeed_COm_Job_Form__c WHERE Experience__c >1
Make sure API names are correct,
Once try to check the code in Workbench,
All Answers
Can you check if there is any space before select statement.There is no comma after First field as well.
Can you try exeuting the above query and I hope the API name of object and fields were correct.
If this solution helps, Please mark it as best answer.
Thanks,
Please use at least one field after the SELECT statement. Also, a comma is missing after a field First_Name__c.
(or)
Thanks,
Tabrez
Please check this
SELECT First_Name__c,Experience__c FROM Indeed_COm_Job_Form__c WHERE Experience__c >1
Make sure API names are correct,
Once try to check the code in Workbench,