MongoDB คำสั่งเพิ่มข้อมูล ด้วย insertOne บทความนี้สอนใช้คำสั่ง insertOne เพื่อเพิ่มข้อมูล หรือ document ลง collection ตัวอย่างเพิ่มข้อมูลง collection ชื่อ product ของฐานข้อมูล example สามารถเขียนคำสั่งได้ดังนี้
ตัวอย่าง MongoDB คำสั่งเพิ่มข้อมูลลง Collection
use example
db.product.insertOne({name: 'Mouse', price: 100})
ผลลัพธ์
{ acknowledged: true,
insertedId: ObjectId("62e3f57243eb42c25c8d48d8") }
MongoDB คำสั่งเพิ่มข้อมูล 1 ข้อมูล จากตัวอย่างใช้คำสั่ง db.product.insertOne คือเพิ่มข้อมูล 1 แถว หรือ 1 document ลง collection ชื่อ product ด้วยคำสั่ง insertOne ประกอบด้วย field name เท่ากับ ‘Mouse’ และ field price เท่ากับ 100