码迷,mamicode.com
首页 > 数据库 > 详细

【MongoDB】使用aggregate求最大值

时间:2016-04-14 12:27:34      阅读:712      评论:0      收藏:0      [点我收藏+]

标签:aggregate   最大值   $max   

mongo aggregate查询:

db.collection.aggregate({
    $group:{
        _id:"$id",  //"$_id"代表引用集合中_id列
        max_value:{$max:"$times"} //"$times"代表引用集合中times列
    },
    $match:{times:{$gte:100}}
})


相当于sql查询:

select _id, max(times)
from collection
where times>=100


本文出自 “架构师之路” 博客,请务必保留此出处http://lizhuquan0769.blog.51cto.com/2591147/1763652

【MongoDB】使用aggregate求最大值

标签:aggregate   最大值   $max   

原文地址:http://lizhuquan0769.blog.51cto.com/2591147/1763652

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!