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

ค้นหาเอกสารที่องค์ประกอบทั้งหมดของอาร์เรย์มีค่าเฉพาะใน MongoDB?


คุณสามารถใช้ find() สำหรับสิ่งนี้ ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -

> db.findDocumentsDemo.insertOne(
   {
      _id: 101,
      "ProductDetails": [
         { "ProductValue":100 },
         { "ProductValue":120 }
      ]
   }
);
{ "acknowledged" : true, "insertedId" : 101 }
> db.findDocumentsDemo.insertOne(
   {
      _id: 102,
      "ProductDetails": [
         { "ProductValue":120},
         { "ProductValue":120 },
         { "ProductValue":120 }
      ]
   }
);
{ "acknowledged" : true, "insertedId" : 102 }

ต่อไปนี้เป็นแบบสอบถามเพื่อแสดงเอกสารทั้งหมดจากคอลเลกชันโดยใช้วิธี find() -

> db.findDocumentsDemo.find().pretty();

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

{
   "_id" : 101,
   "ProductDetails" : [
      {
         "ProductValue" : 100
      },
      {
         "ProductValue" : 120
      }
   ]
}
{
   "_id" : 102,
   "ProductDetails" : [
      {
         "ProductValue" : 120
      },
      {
         "ProductValue" : 120
      },
      {
         "ProductValue" : 120
      }
   ]
}

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

> db.findDocumentsDemo.find({
   "ProductDetails.ProductValue" : {
   },
   "ProductDetails" : {
      $not : {
         $elemMatch : {
            "ProductValue" : {
               $ne : 120
            }
         }
      }
   }
});

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

{ "_id" : 102, "ProductDetails" : [ { "ProductValue" : 120 }, { "ProductValue" : 120 }, { "ProductValue" : 120 } ] }