sql >> Database teknologi >  >> NoSQL >> MongoDB

Er det muligt at gruppere og summere flere kolonner med MongoDB's aggregeringsramme?

Siden MongoDB 3.4 kan dette opnås en smule enklere ved at bruge flere aggregeringspipelines med $facet .

taget fra dokumenterne :

Så for dit brug ville dette opnås ved følgende:

const aggregatorOpts = [
    { $match: { character: 'broquaint' } }, // Match the character
    {
        // Seperate into 2 or more pipes that will count class and
        // race seperatly
        $facet: {
            race: [
                // Group by race and get the count:
                // [
                //   {
                //     _id: 'Halfling',
                //     count: 3
                //   }
                //   {
                //     _id: 'Naga',
                //     count: 2
                //   }
                // ]

                // $sortByCount is the same as
                // { $group: { _id: <expression>, count: { $sum: 1 } } },
                // { $sort: { count: -1 } }

                { $sortByCount: '$race' },

                // Now we want to transform the array in to 1 document,
                // where the '_id' field is the key, and the 'count' is the value.
                // To achieve this we will use $arrayToObject. According the the
                // docs, we have to first rename the fields to 'k' for the key,
                // and 'v' for the value. We use $project for this:
                {
                    $project: {
                        _id: 0,
                        k: '$_id',
                        v: '$count',
                    },
                },
            ],
            // Same as above but for class instead
            class: [
                { $sortByCount: '$class' },
                {
                    $project: {
                        _id: 0,
                        k: '$_id',
                        v: '$count',
                    },
                },
            ],
        },
    },
    {
        // Now apply the $arrayToObject for both class and race.
        $addFields: {
            // Will override the existing class and race arrays
            // with their respective object representation instead.
            class: { $arrayToObject: '$class' },
            race: { $arrayToObject: '$race' },
        },
    },
];

db.races.aggregate(aggregatorOpts)

Hvilket producerer følgende:

[
  {
    "race": {
      "Halfling": 3,
      "Naga": 2
    },
    "class": {
      "Hunter": 3,
      "Rogue": 1,
      "Fighter": 1,
    }
  }
]

Hvis du er tilfreds med outputformateringen @Asya, så kan du fjerne $project og $addFields trin, og forlad bare $sortByCount del i hver sub-pipeline.

Med disse nye funktioner er aggregeringen meget nemmere at udvide med yderligere tællinger. Tilføj blot endnu en aggregeringspipeline i $facet .Det er endda en smule nemmere at tælle undergrupper, men det ville være et separat spørgsmål.



  1. Mongoose indlejret dokumentopdatering mislykkedes?

  2. Redis (ioredis) - Kan ikke fange forbindelsesfejl for at kunne håndtere dem elegant

  3. Spring JPA PostgreSQL + MongoDB

  4. Opdatering af et indlejret array med MongoDB