Dynamic 365 : SQL 查询以检索所有选项列表值和文本
Dynamic 365 : SQL query to retrieve all picklist values and text
在我的 Dynamics 365 上,我的帐户(联系人)实体中有一个很长的选择列表属性。名为 new_nationality 的属性名称(196 个值)。
我如何编写 SQL 查询以从 CRM Sql Db 检索所有值?
我查看了 CRM Db 并找到了 table。找到我使用过的查询,我曾经在下面检索过它。
SELECT Value as 'Label', AttributeValue as 'Value'
FROM StringMap s
JOIN EntityLogicalView e on s.ObjectTypeCode = e.ObjectTypeCode
WHERE s.LangId = 1033 and AttributeName = 'new_nationality' and LogicalName = 'account'
order by AttributeValue
在我的 Dynamics 365 上,我的帐户(联系人)实体中有一个很长的选择列表属性。名为 new_nationality 的属性名称(196 个值)。
我如何编写 SQL 查询以从 CRM Sql Db 检索所有值?
我查看了 CRM Db 并找到了 table。找到我使用过的查询,我曾经在下面检索过它。
SELECT Value as 'Label', AttributeValue as 'Value'
FROM StringMap s
JOIN EntityLogicalView e on s.ObjectTypeCode = e.ObjectTypeCode
WHERE s.LangId = 1033 and AttributeName = 'new_nationality' and LogicalName = 'account'
order by AttributeValue