We are now in the Working with Salesforce Data section of the course. In this lesson, I discuss DML statements.
In this lesson I introduce you to how to SOQL (Salesforce Object Query Language) queries.
Use the Salesforce Object Query Language (SOQL) to search your organization’s Salesforce data for specific information. SOQL is similar to the SELECT statement in the widely used Structured Query Language (...
Use the Salesforce Object Search Language (SOSL) to construct text-based search queries against the search index.
Resource:
Salesforce Object Search Language (SOSL) - https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_sosl.htm
In this lesson we cover dynamic queries using Dynamic SOQL and Dynamic SOSL.
Dynamic SOQL refers to the creation of a SOQL string at run time with Apex code. Dynamic SOQL enables you to create more flexible applications. For example, you can create a search based on input from an end user or upd...