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

MongoDB의 자식 컬렉션에서 개체를 제거하시겠습니까?

<시간/>

자식 컬렉션에서 객체를 제거하려면 MongoDB에서 $pull을 사용합니다. 문서로 컬렉션을 만들자 −

> db.demo715.insertOne({
...    _id:1,
...    details :
...    [
...       { 'id' : '101',
...       'Information' : [
...          {
...             'studentid' : '102',
...             "Name":"Bob"
...          },
...          {
...             'studentid' : '103',
...             "Name":"Chris"
...          }
...       ]
...    }
... ]
... });
{ "acknowledged" : true, "insertedId" : 1 }

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

> db.demo715.find();

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

{ "_id" : 1, "details" : [ { "id" : "101", "Information" : [ { "studentid" : "102", "Name" : "Bob" }, { "studentid" : "103", "Name" : "Chris" } ] } ] }

다음은 MongoDB의 자식 컬렉션에서 개체를 제거하는 쿼리입니다 -

> db.demo715.update(
...    {"details.id":'101'},
...    { $pull: { 'details.$.Information':{studentid:'102',"Name":"Bob"} } }
... );
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

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

> db.demo715.find();

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

{ "_id" : 1, "details" : [ { "id" : "101", "Information" : [ { "studentid" : "103", "Name" : "Chris" } ] } ] }