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

รับองค์ประกอบเฉพาะจากอาร์เรย์ที่ฝังใน MongoDB หรือไม่


หากต้องการรับองค์ประกอบเฉพาะ ให้ใช้ $match พร้อมเครื่องหมายจุด ให้เราสร้างคอลเลกชันที่มีเอกสาร -

> db.demo641.insert(
...    {
...       ProductId:101,
...       "ProductInformation":
...      (                            [
...          {
...             ProductName:"Product-1",
...             "ProductPrice":1000
...          },
...          {
...             ProductName:"Product-2",
...             "ProductPrice":500
...          },
...          {
...             ProductName:"Product-3",
...             "ProductPrice":2000
...          },
...          {
...             ProductName:"Product-4",
...             "ProductPrice":3000
...          }
...       ]
...    }
... );
WriteResult({ "nInserted" : 1 })

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

> db.demo641.find();

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

{
   "_id" : ObjectId("5e9c31d46c954c74be91e6e2"), "ProductId" : 101, "ProductInformation" :
   [
      { "ProductName" : "Product-1", "ProductPrice" : 1000 },
      { "ProductName" : "Product-2", "ProductPrice" : 500 },
      { "ProductName" : "Product-3", "ProductPrice" : 2000 },
      { "ProductName" : "Product-4", "ProductPrice" : 3000 }
   ] 
}

ต่อไปนี้เป็นแบบสอบถามเพื่อรับองค์ประกอบเฉพาะจากอาร์เรย์ที่ฝังใน MongoDB

> db.demo641.aggregate([
... {$unwind: "$ProductInformation"},
... {$match: { "ProductInformation.ProductPrice": {$in :[1000, 2000]}} },
... {$project: {_id: 0, ProductInformation: 1} }
... ]).pretty();

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

{
   "ProductInformation" : {
      "ProductName" : "Product-1",
      "ProductPrice" : 1000
   }
}
{
   "ProductInformation" : {
      "ProductName" : "Product-3",
      "ProductPrice" : 2000
   }
}