Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

แสดงเฉพาะฟิลด์เดียวจากเอกสารทั้งหมดในคอลเลกชัน MongoDB


การฉายภาพหมายถึงต้องมองเห็นเฉพาะฟิลด์ที่เลือกเท่านั้น ตั้งค่าฟิลด์เป็น 1 หากคุณต้องการให้มองเห็นได้

ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -

> db.demo384.insertOne({"StudentName":"Chris Brown","StudentCountryName":"US"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e5b67a022064be7ab44e7f2")
}
> db.demo384.insertOne({"StudentName":"David Miller","StudentCountryName":"AUS"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e5b67ab22064be7ab44e7f3")
}
> db.demo384.insertOne({"StudentName":"John Doe","StudentCountryName":"UK"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e5b67b422064be7ab44e7f4")
}

แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -

> db.demo384.find();

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{ "_id" : ObjectId("5e5b67a022064be7ab44e7f2"), "StudentName" : "Chris Brown", "StudentCountryName" : "US" }
{ "_id" : ObjectId("5e5b67ab22064be7ab44e7f3"), "StudentName" : "David Miller", "StudentCountryName" : "AUS" }
{ "_id" : ObjectId("5e5b67b422064be7ab44e7f4"), "StudentName" : "John Doe", "StudentCountryName" : "UK" }

ต่อไปนี้เป็นแบบสอบถามที่จะแสดงเพียงฟิลด์เดียวและละเว้นส่วนที่เหลือ -

> db.demo384.find({},{_id:0,StudentName:0});

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{ "StudentCountryName" : "US" }
{ "StudentCountryName" : "AUS" }
{ "StudentCountryName" : "UK" }