sql >> Database >  >> NoSQL >> MongoDB

Hoe groeperen in totaal, maar ook andere velden weergeven met Mongo?

U heeft uw oorspronkelijke documentstructuur niet gepost.

Document Structure:

{
    "_id" : ObjectId("50b59cd75bed76f46522c471"),
    "comment_id" : 61,
    "post_id" : 29,
    "comments" : [
                   {
                       "type" : "accepted",
                       "like" : 3
                   },
                   {
                      "type" : "rejected",
                      "like" : 3
                   },
                   {
                      "type" : "spam",
                      "like" : 3
                   }
                ]
}

Uitgaande van uw documentstructuur zoals hierboven, heb ik deze query samengesteld. Je moet het manipuleren volgens je behoeften.

db.posts.aggregate([
        {$unwind:"$comments"},
        {$match:{"$comments.type":{$ne:"spam"}}},
        {$group:{_id:{post_id:"$post_id",comment_id:"$comment_id"},LikeSum:{$sum:"$comments.like"}}},
        {$group:{_id:{post_id:"$_id.post_id"},AvgComments:{$avg:"$LikeSum"}}},
        {$sort:{AvgComments:-1}},
        {$limit:1}
              ])

De bovenstaande query is als volgt opgebouwd:

1.) Unwind the comments array and form individual documents for each element in the comments array
2.) Select only the non-spam comments
3.) Calculate the sum of likes for each comment of all posts
4.) Calculate the average Comment likes for each post
5.) Sort documents in descending order of Average Comment Likes
6.) Select only the first document.

Het uitvoerdocument zal zoiets zijn als

{
    "result" : [
        {
            "_id" : {
                       "post_id" : xx
                    },
            "AvgComments" : xx.xx // Avg Comment likes for post xx
        }
               ],
    "ok" : 1
}



  1. MongoDB 4.2 Beheer &Monitoring Zonder Vendor Lockin

  2. C#-stuurprogramma voor MongoDb:hoe gebruik ik limit+count?

  3. Dynamische XML naar mongoDB

  4. SetFields gebruiken met MongoDB C#-stuurprogramma 2.0