如何应用 azure table 存储查询获取不同的值?
How to get distinct values applying an azure table storage query?
我想获取某个 PartitionKey“emailAddress”的“ReceiverEmail”值。
我只想检索 ReceiverEmail 的不同值。我在 azure 存储 table 上应用此 python 查询,如下所示:
entit = table_service.query_entities('UserRequests','PartitionKey eq \'' + emailAddress + '\'',select= 'ReceiverEmail')
对如何获得不同的值有什么帮助吗?
好像不能直接查询不同的值。本官方文档说明不支持的操作:
如果你想要这个功能,你可以去feedback website
到post你的建议,Azure开发团队可能会采纳你的建议:
我想获取某个 PartitionKey“emailAddress”的“ReceiverEmail”值。 我只想检索 ReceiverEmail 的不同值。我在 azure 存储 table 上应用此 python 查询,如下所示:
entit = table_service.query_entities('UserRequests','PartitionKey eq \'' + emailAddress + '\'',select= 'ReceiverEmail')
对如何获得不同的值有什么帮助吗?
好像不能直接查询不同的值。本官方文档说明不支持的操作:
如果你想要这个功能,你可以去feedback website
到post你的建议,Azure开发团队可能会采纳你的建议: