สมมติว่าคุณมีเอกสารต่อไปนี้ในคอลเล็กชันของฉัน:
{
"_id":ObjectId("562e7c594c12942f08fe4192"),
"shapes":[
{
"shape":"square",
"color":"blue"
},
{
"shape":"circle",
"color":"red"
}
]
},
{
"_id":ObjectId("562e7c594c12942f08fe4193"),
"shapes":[
{
"shape":"square",
"color":"black"
},
{
"shape":"circle",
"color":"green"
}
]
}
ทำแบบสอบถาม:
db.test.find({"shapes.color": "red"}, {"shapes.color": 1})
หรือ
db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1})
ส่งคืนเอกสารที่จับคู่(เอกสาร 1)แต่จะเสมอกับรายการอาร์เรย์ทั้งหมดในshapes
:
{ "shapes":
[
{"shape": "square", "color": "blue"},
{"shape": "circle", "color": "red"}
]
}
อย่างไรก็ตามฉันต้องการรับเอกสาร(เอกสาร 1)เฉพาะกับอาร์เรย์ที่มีcolor=red
:
{ "shapes":
[
{"shape": "circle", "color": "red"}
]
}
ฉันจะทำสิ่งนี้ได้อย่างไร