Skip to content

Instantly share code, notes, and snippets.

@feifangit
Last active December 24, 2015 23:29
Show Gist options
  • Save feifangit/6881024 to your computer and use it in GitHub Desktop.
Save feifangit/6881024 to your computer and use it in GitHub Desktop.
MongoDB university M101P HW5.4
db.zips.aggregate([
{$project:
{
fc: {$substr : ["$city",0,1]},
city:1,pop:1
}
},
{$match:{fc:{$lte:"9",$gte:"0"}}} ,
{
$group: {
_id: null,
allpop: { $sum: "$pop"}
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment