Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Account 对象中,我有一个名为“Company”的自定义字段,它位于托管包中(命名空间前缀:act)。如何通过 SOQL 从这个自定义字段中获取值?提前致谢!
这应该这样做;
SELECT act__Company__c FROM Account
一般:
[tablePrefix].[NameSpace]__[Field]
从 Salesforce 文档中的此页面。