May 2019
Intermediate to advanced
546 pages
12h 41m
English
The SOQL syntax is similar to the regular database SQL language. It also starts with SELECT; you select data FROM a table, and you can ORDER BY field in that table and select data WHERE field values meet specific criteria. The basic syntax of an SOQL query looks like this:
SELECT COUNT(Id), ShippingCountry FROM Account WHERE AnnualRevenue > 10000 GROUP BY ShippingCountry
Let's split up everything you see in this query and more possible ways to select data out of your database tables.
Read now
Unlock full access