Skip to content

Instantly share code, notes, and snippets.

@feifangit
Created October 8, 2013 07:38
Show Gist options
  • Save feifangit/6881015 to your computer and use it in GitHub Desktop.
Save feifangit/6881015 to your computer and use it in GitHub Desktop.
MongoDB university HW5.1
db.posts.aggregate([
{$project:{comments:1, author:1}},
{$unwind:"$comments"},
{$group:{_id:"$comments.author",commentnum:{$sum:1}}},
{$sort:{commentnum:-1}},
{$limit:2}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment