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; } } );