Skip to content

Instantly share code, notes, and snippets.

@kinisoftware
Created March 31, 2013 21:38
Show Gist options
  • Save kinisoftware/5282103 to your computer and use it in GitHub Desktop.
Save kinisoftware/5282103 to your computer and use it in GitHub Desktop.
Curso MongoDB Java - 10Gen - Week5 - HW5.2
db.zips.aggregate([{$match:{$or:[{state:"CA"}, {state:"NY"}]}}, {$group:{_id:{state:"$state", city:"$city"}, total_pop:{$sum:"$pop"}}}, {$match:{total_pop:{$gt:25000}}}, {$group:{_id:null, avg_pop:{$avg:"$total_pop"}}}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment