MongoDB
 Computer >> コンピューター >  >> プログラミング >> MongoDB

カウントを取得するためのMongoDB$unwind


MongoDBの$unwindは、入力ドキュメントから配列フィールドを分解して、各要素のドキュメントを出力します。カウントを取得するには、aggregate()とともに$unwindを使用します。ドキュメントを使用してコレクションを作成しましょう-

> db.demo478.insertOne(
... {
...
...    "Details" : {
...       _id:1,
...       "Information" : [
...          {
...             "Name" : "Chris",
...             "Age":21
...          },
...          {
...             "Name" : "David",
...             "Age":23
...          },
...          {
...
...             "Name" : null,
...             "Age":22
...          },
...          {
...
...             "Name" : null,
...             "Age":24
...          }
...       ]
...    }
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e8204acb0f3fa88e2279092")
}
>
> db.demo478.insertOne(
... {
...
...    "Details" : {
...       _id:2,
...       "Information" : [
...          {
...             "Name" : "Bob",
...             "Age":21
...          },
...          {
...             "Name" : null,
...             "Age":20
...          }
...       ]
...    }
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e8204adb0f3fa88e2279093")
}

find()メソッドを使用してコレクションからすべてのドキュメントを表示する-

> db.demo478.find();

これにより、次の出力が生成されます-

{ "_id" : ObjectId("5e8204acb0f3fa88e2279092"), "Details" : { "_id" : 1, "Information" : [ {
"Name" : "Chris", "Age" : 21 }, { "Name" : "David", "Age" : 23 }, { "Name" : null, "Age" : 22 }, {
"Name" : null, "Age" : 24 } ] } }
{ "_id" : ObjectId("5e8204adb0f3fa88e2279093"), "Details" : { "_id" : 2, "Information" : [ {
"Name" : "Bob", "Age" : 21 }, { "Name" : null, "Age" : 20 } ] } }

以下は、カウントを取得するために$unwindを実装するためのクエリです-

> db.demo478.aggregate([
...    { "$unwind": "$Details.Information" },
...    {
...       "$group" : {
...          "_id": "$Details.Information.Age",
...          "count" : {
...             "$sum": {
...                "$cond": [
...                   { "$gt": [ "$Details.Information.Name", null ] },
...                   1, 0
...                ]
...             }
...          }
...       }
...    },
... { "$sort" : { "count" : -1 } }
... ])

これにより、次の出力が生成されます-

{ "_id" : 21, "count" : 2 }
{ "_id" : 23, "count" : 1 }
{ "_id" : 24, "count" : 0 }
{ "_id" : 20, "count" : 0 }
{ "_id" : 22, "count" : 0 }

  1. ドキュメント内の繰り返しマークの数を取得するためのMongoDBグループクエリ?

    グループクエリの場合は、MongoDB $ groupを使用し、$sumでカウントを取得します。ドキュメントを使用してコレクションを作成しましょう- > db.demo676.insertOne({"Marks":87}); {    "acknowledged" : true,    "insertedId" : ObjectId("5ea41eed04263e90dac943f2") } > db.demo676.insertOne({"Marks&

  2. 対応する重複する名前のフィールド値の数を取得するためのMongoDB集計?

    例を見て、ドキュメントを使用してコレクションを作成しましょう- > db.demo558.insertOne( ... { ...    _id : 100, ...    CountryCode:101, ...    details: [ ...       { ...          Name:"Chris", ...          Subject:"MySQ