Thuta Learning
ရှာဖွေရန်
IntermediateData & Databasesintermediate

Insert Documents

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

Collection ထဲသို့ document အသစ်များထည့်ရန် insertOne() သို့မဟုတ် insertMany() methods များကိုသုံးသည်။

javascript
// Insert a single document
db.inventory.insertOne(
   { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
)

// Insert multiple documents
db.inventory.insertMany([
   { item: "mat", qty: 85, tags: ["gray"] },
   { item: "mousepad", qty: 25, tags: ["gel", "blue"] }
])
You should see
{ "acknowledged": true, "insertedId": ObjectId("...") } ...
Insert Documents | Thuta Learning