You need to sign in to do that
Don't have an account?
jenny jade
Query on Accounts
My query doesn't give any results ,but records do exsists.
Domain is a formula field and its field security is visible to all .
select Id,Domain__c, Name from Account where Domain__c = 'walmart.com'
Please help
Domain is a formula field and its field security is visible to all .
select Id,Domain__c, Name from Account where Domain__c = 'walmart.com'
Please help
select Id,Domain__c, Name from Account where Domain__c like '%walmart.com%'
Or
select Id,Domain__c, Name from Account where Domain__c like '%walmart.com'
depending on how the data is stored