Skip to content

Instantly share code, notes, and snippets.

@pvoznenko
Created September 11, 2014 06:24
Show Gist options
  • Save pvoznenko/5f01e2be2fba11d8a60f to your computer and use it in GitHub Desktop.
Save pvoznenko/5f01e2be2fba11d8a60f to your computer and use it in GitHub Desktop.
hw5.4
db.zips.aggregate([
{$project: {first_char: {$substr : ["$city",0,1]}, pop:1}},
{$match:{"first_char":{"$regex": "[0-9]"}}},
{$group:{"_id":null, sum: {"$sum": "$pop"}}}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment