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

แบบสอบถาม MongoDB สำหรับเอกสารที่องค์ประกอบอาร์เรย์ไม่มีค่าเฉพาะ


สำหรับกรณีดังกล่าว ให้ใช้ $elemMatch โอเปอเรเตอร์นี้จับคู่เอกสารที่มีฟิลด์อาร์เรย์ที่มีองค์ประกอบอย่างน้อยหนึ่งรายการที่ตรงกับเกณฑ์การค้นหาที่ระบุทั้งหมด

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

> db.demo239.insertOne(
...   {
...      "Name" : "Chris",
...      "details" : [
...         { "DueDate" : new ISODate("2019-01-21"), "ProductPrice" : 1270 },
...         { "DueDate" : new ISODate("2020-02-12"), "ProductPrice" : 2000 }
...      ]
...   }
...);
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e441c6bf4cebbeaebec5157")
}
> db.demo239.insertOne(
...   {
...      "Name" : "David",
...      "details" : [
...         { "DueDate" : new ISODate("2018-11-11"), "ProductPrice" : 1450},
...         { "DueDate" : new ISODate("2020-02-12") }
...      ]
...   }
...);
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e441c6cf4cebbeaebec5158")
}

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

> db.demo239.find();

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

{
   "_id" : ObjectId("5e441c6bf4cebbeaebec5157"), "Name" : "Chris", "details" : [
      { "DueDate" : ISODate("2019-01-21T00:00:00Z"), "ProductPrice" : 1270 },
      { "DueDate" : ISODate("2020-02-12T00:00:00Z"), "ProductPrice" : 2000 }
   ]
}
{
   "_id" : ObjectId("5e441c6cf4cebbeaebec5158"), "Name" : "David", "details" : [
      { "DueDate" : ISODate("2018-11-11T00:00:00Z"), "ProductPrice" : 1450 },
      { "DueDate" : ISODate("2020-02-12T00:00:00Z") }
   ]
}

ต่อไปนี้เป็นแบบสอบถามเพื่อดึงเอกสารที่องค์ประกอบอาร์เรย์ไม่มีค่าเฉพาะ -

> db.demo239.find({ "details": { "$elemMatch": { "DueDate": { "$exists": true }, "ProductPrice": { "$exists": false } } } })

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

{ "_id" : ObjectId("5e441c6cf4cebbeaebec5158"), "Name" : "David", "details" : [ { "DueDate" : ISODate("2018-11-11T00:00:00Z"), "ProductPrice" : 1450 }, { "DueDate" : ISODate("2020-02-12T00:00:00Z") } ] }