如何使用SELECT DISTINCT语句的等效方法查询Azure DocumentDB

时间:2014-11-14 11:26:37

标签: json azure azure-cosmosdb

DocumentDb不支持DISTINCT声明。我在DocumentDB中有以下结构的文档(数千个文档):

{
    "type" : "type1",
    "data" : {
        ...
    }
},{
    "type" : "type2",
    "data" : {
        ...
    }
},{
    "type" : "type2",
    "data" : {
        ...
    }
},{
    "type" : "type2",
    "data" : {
        ...
    }
}

如何查询集合并获得以下结果:

{
    "type" : "type1"
},{
    "type" : "type2"
}

1 个答案:

答案 0 :(得分:7)

Azure DocumentDB目前不支持DISTINCT

请在DocumentDB's feedback forum上表达您的意见并投票支持此功能。