SOQL_Custom Objects
SOQL Joins Let’s look at what we can do with this data with some familiar JOIN patterns borrowed from SQL. This time, however, we will utilize them in SOQL and also use the power of relationship traversal in path...
Read Moreby vigorous-zhukovsky | May 4, 2020 | SOQL | 0 |
SOQL Joins Let’s look at what we can do with this data with some familiar JOIN patterns borrowed from SQL. This time, however, we will utilize them in SOQL and also use the power of relationship traversal in path...
Read Moreby vigorous-zhukovsky | May 2, 2020 | SOQL | 0 |
Query child-to-parent relationships, which are often many-to-one. Specify these relationships directly in the SELECT, FROM, or WHERE clauses using the dot (.) operator. For example: SELECT Id, Name, Account.Name,...
Read Moreby vigorous-zhukovsky | May 2, 2020 | SOQL | 0 |
which are almost always one-to-many. Specify these relationships using a subquery (enclosed in parentheses), where the initial member of the FROM clause in the subquery is related to the initial member of the outer...
Read Moreby vigorous-zhukovsky | May 2, 2020 | SOQL | 0 |
CHAPTER 1 Introduction to SOQL and SOSL If you’ve built a custom UI for Salesforce, you can use the Salesforce Object Query Language (SOQL) and Salesforce Object Search Language (SOSL) APIs to search your organization’s...
Read Moreby vigorous-zhukovsky | May 2, 2020 | SOQL | 0 |
The full form of SOQL is Salesforce Object Query Language. SOQL supports some features in SQL. SOQL is similar to SQL (Structures Query Language). By using SOQL in salesforce we fetch the data in force.com. What are the SOQL...
Read Moreby vigorous-zhukovsky | Apr 30, 2020 | SOQL | 0 |
Select Id, Name From Account Where Id NOT IN (SELECT AccountId FROM Opportunity)
Read Moreby vigorous-zhukovsky | Apr 30, 2020 | SOQL | 0 |
select id, name ,(select id from opportunities where StageName='Closed Won') from account
Read Moreby vigorous-zhukovsky | Apr 30, 2020 | SOQL | 0 |
SELECT Id, Subject ,What.type, WhatID FROM Event Where What.Type IN('Account', 'Opportunity')
Read More
Recent Comments