[MongoDB 개념] MongoDB 데이터 조회
MongoDB_Query MongoDB 데이터(Document) 조회 아래와 같은 데이터가 적재되어 있다고 가정 (collection Name : inventory) [ { "item": "journal", "qty": 25, "size": { "h": 14, "w": 21, "uom": "cm" }, "status": "A" }, { "item": "notebook", "qty": 50, "size": { "h": 8.5, "w": 11, "uom": "in" }, "status": "A" }, { "item": "paper", "qty": 100, "size": { "h": 8.5, "w": 11, "uom": "in" }, "status": "D" }, { "item": "planner", "qty..
2022. 4. 21.
[MongoDB 개념] CUD Operations
MongoDB CUD Operations Create(insert) Operation Document가 _id 필드를 지정하지 않으면 MongoDB는 ObjectId 값이 있는 _id 필드를 새 문서에 추가합니다. _id 필드는 중복키를 허용하지 않습니다. (PK) 단일 insert (insertOne) db.inventory.insertOne( { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } } ) 다중 insert (insertMany) db.inventory.insertMany([ { item: "journal", qty: 25, tags: ["blank", "red"], size: { h: 14, w..
2022. 4. 19.