RecordType of Salesforce Account
Posted: Tue 12 Apr 2016 03:57
Hi,
I need to query the account table for a specific account type
with SOQL in the developer console I can execute the following query
but the same query fails with a SalesforceCommand...
with error: Unknown Column 'RecordType.DeveloperName'
Is it possible to do with a command?
Thanks
I need to query the account table for a specific account type
with SOQL in the developer console I can execute the following query
Code: Select all
SELECT Id,
Name
FROM Account
where RecordType.DeveloperName = 'Clinique'
with error: Unknown Column 'RecordType.DeveloperName'
Is it possible to do with a command?
Thanks