标签: mongodb collections aggregate
我在同一个MongoDB中有两个集合。 我想查询一个仅匹配大于另一个集合的最大时间戳的时间戳,以便可以将它们放入第二个集合:类似
db.coll1.aggregate([ {"$match": { "timestamp": {"gt": db.coll2.max("timestamp")} }}, {"$out": coll2} ])