MongoDB update
-
MongoDB - CRUD (2)데이터베이스/MongoDB 2020. 3. 27. 11:46
이번시간에는 document update에 대해 알아보겠습니다. CRUD - (UPDATE) db.collection.updateOne(,,) - 한가지 문서를 수정할때 db.collection.updateMany(,,) - 여러가지 문서를 수정할때 db.collection.replaceOne(,,) - 한가지 문서의 전체내용을 바꿀때 일단 저는 기존 데이터에 데이터를 조금 더 추가 해 보겠습니다. db.inventory.insertMany( [ { item: "notebook", qty: 50, size: { h: 8.5, w: 11, uom: "in" }, status: "P" }, { item: "paper", qty: 100, size: { h: 8.5, w: 11, uom: "in" }, sta..