Universal Containers uses Big Objects to store almost a billion customer transactions called Customer_Transaction b.
These are the fields on Customer_Transaction b:
Account c
Program c
Points_Earned c
Location c
Transaction_Date c
The following fields have been identified as Index Fields for the Customer_Transaction b object: Account c, Program c, and Transaction_Date c.
Which SOQL query is valid on the Customer_Transaction b Big Object?
- SELECT Account__c, Program__c, Transaction_Date__c FROM Customer_Transaction__b
WHERE Account__c = '001R000000302D3'
AND Program__c ='Shoppers'
AND Transaction_Date__c=2019-05-31T00:00Z - SELECT Account__c, Program__c, Transaction_Date__c
FROM Customer_Transaction__b WHERE Account__c = '001R000000302D3'
AND Program__c LIKE 'Shop%'
AND Transaction_Date__c=2019-05-31T00:00Z - SELECT Account__c, Program__c, Transaction_Date__c FROM Customer_Transaction__b
WHERE Account__c = '001R000000302D3'
AND Program__c INCLUDES ('Shoppers', 'Womens')
AND Transaction_Date__c=2019-05-31T00:00Z - SELECT Account__c, Program__c, Transaction_Date__c FROM Customer_Transaction__b
WHERE Account__c = '001R000000302D3'
AND Program__c EXCLUDES ('Shoppers', 'Womens')
AND Transaction_Date__c=2019-05-31T00:00Z
Reveal Solution Next Question