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

MongoDB의 특정 키로 배열의 객체 업데이트

<시간/>

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

>db.demo419.insertOne({"ProductInformation":[{"ProductName":"Product-1","ProductPrice":500},{"ProductName":"Product-2","ProductPrice":600}]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e724762b912067e57771ae8")
}

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

> db.demo419.find();

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

{ "_id" : ObjectId("5e724762b912067e57771ae8"), "ProductInformation" : [ { "ProductName" : "Product-1", "ProductPrice" : 500 }, { "ProductName" : "Product-2", "ProductPrice" : 600 } ] }

다음은 특정 키로 배열의 객체를 업데이트하는 쿼리입니다 -

> db.demo419.update({'ProductInformation.ProductName' : "Product-1" }, { $set : { 'ProductInformation.$.ProductPrice' : 1250}});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 }

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

> db.demo419.find();

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

{ "_id" : ObjectId("5e724762b912067e57771ae8"), "ProductInformation" : [ { "ProductName" : "Product-1", "ProductPrice" : 1250 }, { "ProductName" : "Product-2", "ProductPrice" : 600 } ]