mongodb - Select documents where doc.arr[i]>n -
i have collection elements this:
{ name: "smith", fields: [10, 20, 30] }
is there way select documents second value of fields array ( fields[1]) > 15 ?
one solution is:
//create multikey index on field db.test.createindex({"fields.1" : 1}) db.test.find({"fields.1" : {$gt : 15}})
Comments
Post a Comment