1

ユーザーフィールドを含むドキュメントを含むMongoDBデータベースがあります。ドキュメントは次のようになります。

{"_id" : ObjectId("4f98a564590f22a8b13e7df0"), "user" : ['pete', 'joe', 'sally'] ... }

{"_id" : ObjectId("4f981426590f22a8b13e6b62"), "user" : ['tim', 'joe', 'sam'] ... }

データベース内のすべてのユーザーのセットをカウントするクエリを作成するにはどうすればよいですか。上記の2つのドキュメントの場合、クエリは5のカウントを返します。

4

1 に答える 1

3

distinct()関数を使用できます。これは、データを集計するために MongoDB が提供する機能の 1 つです。

> db.test.insert({ "user": ["pete", "joe", "sally"]})
> db.test.insert({ "user": ["tim", "joe", "sam"]})
> db.test.find()
{ "_id" : ObjectId("4fb933d5e5d47740efd09ae4"), "user" : [ "pete", "joe", "sally" ] }
{ "_id" : ObjectId("4fb933e9e5d47740efd09ae5"), "user" : [ "tim", "joe", "sam" ] }
> db.test.distinct("user")
[ "joe", "pete", "sally", "sam", "tim" ]
> db.test.distinct("user").length
5
于 2012-05-20T18:17:22.830 に答える