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