本文介绍了mongodb 如何从集合中获取最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 mongodb 集合,例如:
I have a mongodb collection like:
db.kids.find()
//results
[
{name:'tom', age:10},
{name:'alice', age:12},
....
]
我需要一个查询来从这个集合中获取 MAX 'age'就像在 SQL 中:SELECT MAX(age) FROM kids WHERE 1
I need a query to get MAX 'age' from this collectionlike in SQL: SELECT MAX(age) FROM kids WHERE 1
推荐答案
db.collection.find().sort({age:-1}).limit(1) // for MAX
db.collection.find().sort({age:+1}).limit(1) // for MIN
它完全可用,但我不确定性能
it's completely usable but i'm not sure about performance
这篇关于mongodb 如何从集合中获取最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!