Giả sử bạn có các tài liệu sau trong bộ sưu tập của tôi:
{
"_id":ObjectId("562e7c594c12942f08fe4192"),
"shapes":[
{
"shape":"square",
"color":"blue"
},
{
"shape":"circle",
"color":"red"
}
]
},
{
"_id":ObjectId("562e7c594c12942f08fe4193"),
"shapes":[
{
"shape":"square",
"color":"black"
},
{
"shape":"circle",
"color":"green"
}
]
}
Làm truy vấn:
db.test.find({"shapes.color": "red"}, {"shapes.color": 1})
Hoặc là
db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1})
Trả về tài liệu trùng khớp (Tài liệu 1) , nhưng luôn có TẤT CẢ các mục trong shapes
:
{ "shapes":
[
{"shape": "square", "color": "blue"},
{"shape": "circle", "color": "red"}
]
}
Tuy nhiên, tôi chỉ muốn lấy tài liệu (Tài liệu 1) với mảng chứa color=red
:
{ "shapes":
[
{"shape": "circle", "color": "red"}
]
}
Tôi có thể làm cái này như thế nào?