function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Pal2011Pal2011 

Retrieve State from Account Site usign SOQL

Hi,

 

Is it possible to retrieve State information from Account Site field usign SOQL?

 

Thanks,

SFFSFF

If you store State information in the Account.Site field, then sure you can extract that information with:

 

SELECT Id, Name, Site FROM Account WHERE ...

Hope this helps,