Skip to content

Instantly share code, notes, and snippets.

@samstewart
Created April 3, 2017 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samstewart/c750e6ad4c1bab26fb603eb69db83136 to your computer and use it in GitHub Desktop.
Save samstewart/c750e6ad4c1bab26fb603eb69db83136 to your computer and use it in GitHub Desktop.
db.employees.aggregate(
[
{ $group: { _id: { college: "$college", department: "$department" },
salary: {$sum : "$salary"}
}},
{$out: "college_and_departments"}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment