Skip to content

Instantly share code, notes, and snippets.

@kinisoftware
Created March 31, 2013 22:34
Show Gist options
  • Save kinisoftware/5282277 to your computer and use it in GitHub Desktop.
Save kinisoftware/5282277 to your computer and use it in GitHub Desktop.
Course MongoDB Java - Week5 - HW5-4
db.zips.aggregate([{$project:{first_char: {$substr: ["$city", 0, 1]}, pop:1, _id:0}}, {$match:{first_char:{$lte:'9'}}}, {$group:{_id:null, total:{$sum:"$pop"}}}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment