Account table
|
Contact table
|
accessedAt
|
accessedAt
|
createdBy
|
bouncebackDate
|
currentStatus
|
currentStatus
|
Description
|
createdBy
|
folderId
|
Description
|
Permissions
|
folderId
|
scheduledFor
|
Permissions
|
sourceTemplateId
|
scheduledFor
|
updatedBy
|
sourceTemplateId
|
subscriptionDate
|
|
updatedBy
|
|
unsubscriptionDate
|
Query
|
Description
|
SELECT * FROM Contact WHERE Country='Switzerland'
|
There are more than100 columns in the Contact table. To take advantage of bulk operations, constrain the SELECT statement to a set of 100 columns or less.
|
SELECT * FROM ContactList WHERE Region='East'
|
The ContactList table is not supported for bulk operations.
|
SELECT Id, C_Website FROM Account WHERE Id=17
|
This returns one row.
|
SELECT Id, C_Website FROM Contact WHERE Country='Switzerland' AND Region='EAST'
|
More than one criterion or comparison operators are used in the WHERE clause.
Tips:
If a query has zero or one comparison operators (meaning one of =, <=, <, >, >=, <>) in the WHERE clause, the query will usually be processed using the bulk operations.
If a query contains the LIKE operator in the WHERE clause, the query is not processed using the bulk operations.
|