A. Use a SOSL query to return ALL opportunities that have a value of NULL in any field.
B. Use the OR operator to combine WHERE clauses to strictly search for each value within the picklist, including Type__c = NULL.
C. Perform two SOQL queries; one to query Opportunities where Type__c != NULL, and another to query where Type__c = NULL, then join the result set using Apex.
D. Create a formula field that substitutes NULL values for a string of text, create an index for the formula field, then use the formula within the WHERE clause.

Suggest answer: D

Reference:

No comments:

Please share to make the community better.