db.mycollection.find([{
$project: {
_id: 0,
city: 1,
"Marks": { $range: [ 50, "$marks", 100] }
}
}])
答案 0 :(得分:1)
在$range
中使用aggregate
db.mycollection.aggregate([{
$project: {
_id: 0,
city: 1,
"Marks range": { $range: [ 50, "$marks", 100 ] }
}
}])
参考链接:here
或者您可以使用find
db.mycollection.find({ marks: { $gte:50, $lt: 100 } })