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

MongoDB에서 특정 필드가 포함된 문서를 찾으십니까?

<시간/>

이를 위해 $exists 연산자를 사용합니다. 먼저 문서로 컬렉션을 만들어 보겠습니다. −

>dbfindDocumentContainsSpecificFieldDemoinsertOne({"ProductPrices":{"Product1":10,"Pr oduct2":50}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cf2385bb64a577be5a2bc14")
}
>dbfindDocumentContainsSpecificFieldDemoinsertOne({"ProductPrices":{"Product3":150,"P roduct7":100,"Product5":250}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cf2387eb64a577be5a2bc15")
}

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

> dbfindDocumentContainsSpecificFieldDemofind()pretty();

이것은 다음 문서를 생성합니다 -

{
   "_id" : ObjectId("5cf2385bb64a577be5a2bc14"),
   "ProductPrices" : {
      "Product1" : 10,
      "Product2" : 50
   }
}
{
   "_id" : ObjectId("5cf2387eb64a577be5a2bc15"),
   "ProductPrices" : {
      "Product3" : 150,
      "Product7" : 100,
      "Product5" : 250
   }
}

다음은 특정 필드를 포함하는 문서를 찾는 쿼리입니다 -

> dbfindDocumentContainsSpecificFieldDemofind({"ProductPricesProduct2":{$exists:true}});

이것은 다음 문서를 생성합니다 -

{ "_id" : ObjectId("5cf2385bb64a577be5a2bc14"), "ProductPrices" : { "Product1" : 10, "Product2" : 50 } }