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

문서에서 배열 요소를 제거하는 MongoDB 쿼리?

<시간/>

$pull을 사용하여 다음 구문과 같이 MongoDB 문서에서 배열 요소를 제거하십시오 -

db.yourCollectionName.update( { },{ $pull: { yourFieldName: yourValue }},{multi:true });

먼저 문서로 컬렉션을 만들어 보겠습니다. −

>db.removeArrayElementsDemo.insertOne({"AllPlayerName":["John","Sam","Carol","David"]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cd90d011a844af18acdffc1")
}
>db.removeArrayElementsDemo.insertOne({"AllPlayerName":["Chris","Robert","John","Mike"]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cd90d2e1a844af18acdffc2")
}

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

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

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

{
   "_id" : ObjectId("5cd90d011a844af18acdffc1"),
   "AllPlayerName" : [
      "John",
      "Sam",
      "Carol",
      "David"
   ]
}
{
   "_id" : ObjectId("5cd90d2e1a844af18acdffc2"),
   "AllPlayerName" : [
      "Chris",
      "Robert",
      "John",
      "Mike"
   ]
}

다음은 문서에서 배열 요소를 제거하는 쿼리입니다 -

> db.removeArrayElementsDemo.update( { },{ $pull: { AllPlayerName: "John" }},{multi:true });
WriteResult({ "nMatched" : 2, "nUpserted" : 0, "nModified" : 2 })

모든 문서를 다시 한 번 확인합시다 -

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

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

{
   "_id" : ObjectId("5cd90d011a844af18acdffc1"),
   "AllPlayerName" : [
      "Sam",
      "Carol",
      "David"
   ]
}
{
   "_id" : ObjectId("5cd90d2e1a844af18acdffc2"),
   "AllPlayerName" : [
      "Chris",
      "Robert",
      "Mike"
   ]
}