MongoDB ไม่แสดง _id ซ่อน field _id บทความนี้สอนเขียน query เพื่อแสดงข้อมูลจากตาราง หรือ collection ของฐานข้อมูล MongoDB โดยไม่แสดง field _id หรือซ่อนข้อมูล _id พร้อมแสดงผลลัพธ์ออกสู่หน้าจอ สามารถเขียนคำสั่งได้ดังนี้
ตัวอย่าง MongoDB ไม่แสดง _id ซ่อนข้อมูล _id
db.product.find({}, {_id:0})
ผลลัพธ์
{ name: 'Notebook', price: 200 }
{ name: 'Computer', price: 200 }
{ name: 'Mobile', price: 220 }
MongoDB ไม่แสดง _id จากตัวอย่าง db.product.find คือแสดงข้อมูลจาก collection ชื่อ product ด้วยคำสั่ง find จากนั้นแสดงทุก field ยกเว้น _id ด้วย {_id:0}