Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

MongoDB의 모든 값과 일치하도록 집계 작업

<시간/>

MongoDB의 모든 값을 일치시키려면 $and와 함께 Aggregation에서 $match를 사용하십시오. 문서로 컬렉션을 만들자 −

> db.demo574.insertOne(
...    {
...       "details1": {
...          "details2": {
...             "dueDate": new ISODate("2020-01-10"),
...             "Name": "Chris",
...
...             "UserInformation": {
...                "Name": "John",
...                "Marks": 78
...             },
...             CountryName:"US"
...          },
...          id:101
...       }
...    }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e9167f3581e9acd78b427f6")
}

find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -

> db.demo574.find();

이것은 다음과 같은 출력을 생성합니다 -

{
   "_id" : ObjectId("5e9167f3581e9acd78b427f6"), "details1" :
   { "details2" : { "dueDate" : ISODate("2020-01-10T00:00:00Z"), "Name" : "Chris", "UserInformation" :
   { "Name" : "John", "Marks" : 78 }, "CountryName" : "US" }, "id" : 101 }
}

다음은 집계 및 일치 작업을 수행하는 쿼리입니다. -

> db.demo574.aggregate({
...    $match: {
...       $and: [
...          {"details1.id": 101},
...          {"details1.details2.UserInformation.Name": 'John'},
...          {"details1.details2.Name": 'Chris'}
...       ]
...    }
... }
... );

이것은 다음과 같은 출력을 생성합니다 -

{
   "_id" : ObjectId("5e9167f3581e9acd78b427f6"), "details1" :
   { "details2" : { "dueDate" : ISODate("2020-01-10T00:00:00Z"), "Name" : "Chris", "UserInformation" :
   { "Name" : "John", "Marks" : 78 }, "CountryName" : "US" }, "id" : 101 } 
}