Basic SOQL Query 1730815763
Basic SOQL Query 1730815763
14. Semi-Join
15. Anti-Join
This retrieves all records, including those in the Recycle Bin (soft
deleted).
You can query roll-up summary fields like any other fields.
When dealing with large data sets, you can use QueryLocator
and QueryMore in Apex to retrieve more than 50,000 records.
Database.QueryLocator ql =
Database.getQueryLocator([SELECT Id, Name FROM Account]);