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

Come aggregare i voti di tutti i soggetti in mongoDB

Puoi utilizzare l'aggregazione di seguito:

db.col.aggregate([
    {
        $unwind: "$marks"
    },
    {
        $project: {
            _id: 1,
            name: 1,
            marks: {
                $objectToArray: "$marks"
            }
        }
    },
    {
        $project: {
            _id :1,
            name: 1,
            total_marks: {
                $reduce: {
                    input: "$marks",
                    initialValue: 0,
                    in: { $add : ["$$value", "$$this.v"] }
                }
            }
        }
    },
    {
        $group: {
            _id: "$_id",
            name: { $first: "$name" },
            total_marks: { $sum: "$total_marks" }
        }
    }
])

Poiché i tuoi voti sono memorizzati come un oggetto, dovresti utilizzare $objectToArray per ottenere una serie di argomenti. Quindi puoi utilizzare $reduce per sommare tutte le materie per uno studente.