Skip to content

Instantly share code, notes, and snippets.

@pvoznenko
Created September 11, 2014 06:02
Show Gist options
  • Save pvoznenko/43c96777dc9aab72287c to your computer and use it in GitHub Desktop.
Save pvoznenko/43c96777dc9aab72287c to your computer and use it in GitHub Desktop.
hw5.2
db.grades.aggregate([{$group:{"_id": {state: "$state", city: "$city"}, pop: {"$sum": "$pop"}}}, {$match:{"pop":{"$gt":25000}, "_id.state": {"$in": ["CA", "NY"]}}}, {$group:{"_id":null,avg: {"$avg": "$pop"}}} ])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment