Skip to content

Instantly share code, notes, and snippets.

@hperantunes
Last active August 29, 2015 14:15
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 hperantunes/619bfd16d3e243e905e6 to your computer and use it in GitHub Desktop.
Save hperantunes/619bfd16d3e243e905e6 to your computer and use it in GitHub Desktop.
db.zips.aggregate([
{$project: { _id: 1, city: 1, pop: 1, state: 1, first_char: {$substr : ["$city", 0, 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