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

Mongodb是用Sum 和Where条件

时间:2016-12-29 20:17:12      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:deb   script   return   java   collect   ota   group   bit   sort   

Sum

按照条件求和

db.aa.aggregate([
                     
                     { $group: { _id: null, total: { $sum: "$value" } } }, //$value 指的是按照那一列来sum。比如 value是mongo的一列。那么此处应该是 $value
                     { $sort: { total: -1 } }
                   ])

 

 

Where条件

db.myCollection.find( { $where: "this.credits == this.debits" } );
db.myCollection.find( { $where: "obj.credits == obj.debits" } );

db.myCollection.find( { $where: function() { return (this.credits == this.debits) } } );
db.myCollection.find( { $where: function() { return obj.credits == obj.debits; } } );

  

 

Mongodb是用Sum 和Where条件

标签:deb   script   return   java   collect   ota   group   bit   sort   

原文地址:http://www.cnblogs.com/haoliansheng/p/6234009.html

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