MongoDB에서 푸시 및 슬라이스하려면 $push 및 $slice를 사용합니다. 문서로 컬렉션을 만들자 −
> db.demo656.insertOne({Name:"John"}); { "acknowledged" : true, "insertedId" : ObjectId("5ea060264deddd72997713cf") }
find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -
> db.demo656.find();
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5ea060264deddd72997713cf"), "Name" : "John" }
다음은 MongoDB에서 푸시 및 슬라이스 쿼리입니다-
> db.demo656.update({Name:"John"}, {"$push":{"ListOfName": {"$each": ["John"], "$slice": -9}}}); WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -
> db.demo656.find();
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5ea060264deddd72997713cf"), "Name" : "John", "ListOfName" : [ "John" ] }
다음은 다시 한 번 푸시하고 슬라이스하는 쿼리입니다 -
> db.demo656.update({Name:"John"}, {"$push":{"ListOfName": {"$each": ["David"], "$slice": -9}}}); WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -
> db.demo656.find();
이것은 다음과 같은 출력을 생성합니다 -
{ "_id" : ObjectId("5ea060264deddd72997713cf"), "Name" : "John", "ListOfName" : [ "John", "David" ] }