Skip to content

Instantly share code, notes, and snippets.

@bladeofsteel
Created May 12, 2011 11:38
Show Gist options
  • Save bladeofsteel/968352 to your computer and use it in GitHub Desktop.
Save bladeofsteel/968352 to your computer and use it in GitHub Desktop.
How to calculate sum in mongo collection
db.coll.group({ key: {}, initial: {csum: 0}, reduce: function(obj,prev){ prev.csum += obj.field;}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment