SOQL:
- SOQL stands for Salesforce Object Query Language.
- SOQL starts with SELECT Keyword
- We can execute SOQL different tools like Developer Console, Workbench and VS Code.
Syntax:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT fields | |
FROM Object | |
WHERE Condition | |
Ordering LIMIT |
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Id, Student_Name__c, Email__c FROM Student__c |