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

ประเมินค่าใดค่าหนึ่งจากคอลเล็กชัน MongoDB ด้วยเอกสาร


ในการประเมินค่าตั้งแต่หนึ่งค่าขึ้นไป ให้ใช้ $or พร้อมกับ find() ให้เราสร้างคอลเลกชันที่มีเอกสาร -

> db.demo174.insertOne({"StudentName":"Chris","CountryName":"US"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e383c709e4f06af551997e5")
}
> db.demo174.insertOne({"StudentName":"David","CountryName":"UK"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e383c779e4f06af551997e6")
}
> db.demo174.insertOne({"StudentName":"Bob","CountryName":"AUS"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e383c7e9e4f06af551997e7")
}

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

> db.demo174.find();

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

{ "_id" : ObjectId("5e383c709e4f06af551997e5"), "StudentName" : "Chris", "CountryName" : "US" }
{ "_id" : ObjectId("5e383c779e4f06af551997e6"), "StudentName" : "David", "CountryName" : "UK" }
{ "_id" : ObjectId("5e383c7e9e4f06af551997e7"), "StudentName" : "Bob", "CountryName" : "AUS" }

ต่อไปนี้เป็นแบบสอบถามเพื่อประเมินค่าอย่างน้อยหนึ่งค่า ที่นี่ เรากำลังดึงค่ามากกว่าหนึ่งค่า เช่น นักเรียน "David" หรือประเทศ "US" -

> db.demo174.find({$or:[{"StudentName":"David"},{"CountryName":"US"}]});

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

{ "_id" : ObjectId("5e383c709e4f06af551997e5"), "StudentName" : "Chris", "CountryName" : "US" }
{ "_id" : ObjectId("5e383c779e4f06af551997e6"), "StudentName" : "David", "CountryName" : "UK" }