我在包含两个计数器字段的集合中有文档。想要查找counter1计数大于counter2计数的文档。如何在查询查询中将counter2键作为变量传递?我想要这样的东西......
db.collection.find( { counter1: { $gt: counter2 }})
答案 0 :(得分:1)
我认为你必须使用mongoDB聚合框架(http://docs.mongodb.org/manual/applications/aggregation/)or map-reduce(http://docs.mongodb.org/manual/applications/map-reduce/),它将为你提供实现它的能力。