3
我想在MongoDB中查詢嵌套的數據。MongoDB按嵌套數據選擇
理想我想運行類似的查詢:
SELECT FROM attributes.type1 WHERE value = true
我明白,我可以使用dot notation通過attributes.type1查詢,但它是可以查詢比這更深?
謝謝!
我的數據集:
{
"attributes": {
"type1": [
{
"year": "2012",
"value": "true"
},
{
"year": "1998",
"value": "false"
}
],
}
}
完美。謝謝! – Matt 2012-03-29 19:25:12