23

我正在尝试学习 MongoDB 以及它对我的分析有何用处。我只是在玩他们网站上提供的 JavaScript 控制台,并创建了以下项目:

{"title": "Cool", "_id": {"$oid": "503e4dc0cc93742e0d0ccad3"}, "tags": ["twenty", "sixty"]}
{"title": "Other", "_id": {"$oid": "503e4e5bcc93742e0d0ccad4"}, "tags": ["ten", "thirty"]}
{"title": "Ouch", "_id": {"$oid": "503e4e72cc93742e0d0ccad5"}, "tags": ["twenty", "seventy"]}
{"title": "Final", "_id": {"$oid": "503e4e72cc93742e0d0ccad6"}, "tags": ["sixty", "seventy"]}

我想做的是查询,所以我得到了所有这些对象的唯一标签列表。结果应如下所示:

["ten", "twenty", "thirty", "sixty", "seventy"]

我该如何查询这个?我正在尝试distinct(),但呼叫总是失败,甚至没有查询。

4

5 回答 5

31

他们网站上失败的代码适用于实际的 MongoDB 实例:

> db.posts.insert({title: "Hello", tags: ["one", "five"]});
> db.posts.insert({title: "World", tags: ["one", "three"]});
> db.posts.distinct("tags");
[ "one", "three", "five"]

诡异的。

于 2012-08-29T17:55:09.573 回答
12

您可以使用聚合框架。根据您希望结果结构的方式,您可以使用

var pipeline = [ 
        {"$unwind": "$tags" } ,
        { "$group": { _id: "$tags" } }
    ];
R = db.tb.aggregate( pipeline );
printjson(R);

{
        "result" : [
                {
                        "_id" : "seventy"
                },
                {
                        "_id" : "ten"
                },
                {
                        "_id" : "sixty"
                },
                {
                        "_id" : "thirty"
                },
                {
                        "_id" : "twenty"
                }
        ],
        "ok" : 1
}

或者

var pipeline = [ 
        {"$unwind": "$tags" } ,
        { "$group": 
            { _id: null, tags: {"$addToSet": "$tags" }  }
        }
    ];
R = db.tb.aggregate( pipeline );
printjson(R);

{
        "result" : [
                {
                        "_id" : null,
                        "tags" : [
                                "seventy",
                                "ten",
                                "sixty",
                                "thirty",
                                "twenty"
                        ]
                }
        ],
        "ok" : 1
}
于 2012-08-29T18:30:11.023 回答
11

你应该可以使用这个:

db.mycollection.distinct("tags").sort()
于 2014-09-29T18:33:11.657 回答
5

使用聚合管道获取唯一数组元素的另一种方法

db.blogs.aggregate(
  [
    {$group:{_id : null, uniqueTags : {$push : "$tags"}}},
    {$project:{
      _id : 0,
      uniqueTags : {
        $reduce : {
          input : "$uniqueTags", 
          initialValue :[], 
          in : {$let : {
            vars : {elem : { $concatArrays : ["$$this", "$$value"] }},
            in : {$setUnion : "$$elem"}
          }}
        }
      }
    }}
  ]
)

收藏

> db.blogs.find()
{ "_id" : ObjectId("5a6d53faca11d88f428a2999"), "name" : "sdfdef", "tags" : [ "abc", "def", "efg", "abc" ] }
{ "_id" : ObjectId("5a6d5434ca11d88f428a299a"), "name" : "abcdef", "tags" : [ "abc", "ijk", "lmo", "zyx" ] }
> 

管道

>   db.blogs.aggregate(
...     [
...       {$group:{_id : null, uniqueTags : {$push : "$tags"}}},
...       {$project:{
...         _id : 0,
...         uniqueTags : {
...           $reduce : {
...             input : "$uniqueTags", 
...             initialValue :[], 
...             in : {$let : {
...               vars : {elem : { $concatArrays : ["$$this", "$$value"] }},
...               in : {$setUnion : "$$elem"}
...             }}
...           }
...         }
...       }}
...     ]
...   )

结果

{ "uniqueTags" : [ "abc", "def", "efg", "ijk", "lmo", "zyx" ] }
于 2018-01-28T05:10:03.237 回答
3

有几个可用的 web mongo 控制台:

但是如果你在其中输入帮助,你会发现它们只支持极少数的操作:

HELP
Note: Only a subset of MongoDB's features are provided here.
For everything else, download and install at mongodb.org.

db.foo.help()                 help on collection method
db.foo.find()                 list objects in collection foo
db.foo.save({a: 1})           save a document to collection foo
db.foo.update({a: 1}, {a: 2}) update document where a == 1
db.foo.find({a: 1})           list objects in foo where a == 1

it                            use to further iterate over a cursor

因此 distinct 不起作用,因为它不受支持。

于 2012-08-29T18:16:11.200 回答