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

MongoDB의 문서 중 하나에서 중첩 값을 찾기 위해 컬렉션을 검색하려면 어떻게 해야 합니까?

<시간/>

이를 위해 find()에서 이중 밑줄(__)을 사용합니다. 먼저 문서로 컬렉션을 생성해 보겠습니다. −

> db.nestedDemo.insertOne({"Information":{"__StudentName":"John Smith"}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e06f39125ddae1f53b621f0")
}
> db.nestedDemo.insertOne({"Information":{"__StudentName":"John Doe"}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e06f39e25ddae1f53b621f1")
}
> db.nestedDemo.insertOne({"Information":{"__StudentName":"Chris Brown"}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e06f3a625ddae1f53b621f2")
}

다음은 find() 메서드를 사용하여 컬렉션의 모든 문서를 표시하는 쿼리입니다. -

> db.nestedDemo.find().pretty();

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

{
   "_id" : ObjectId("5e06f39125ddae1f53b621f0"),
   "Information" : {
      "__StudentName" : "John Smith"
   }
}
{
   "_id" : ObjectId("5e06f39e25ddae1f53b621f1"),
   "Information" : {
      "__StudentName" : "John Doe"
   }
}
{
   "_id" : ObjectId("5e06f3a625ddae1f53b621f2"),
   "Information" : {
      "__StudentName" : "Chris Brown"
   }
}

다음은 MongoDB의 문서 중 하나에서 중첩된 값을 찾기 위해 컬렉션을 검색하는 쿼리입니다 -

> db.nestedDemo.find({"Information.__StudentName":"John Doe"});

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

{ "_id" : ObjectId("5e06f39e25ddae1f53b621f1"), "Information" : { "__StudentName" : "John Doe" } }