sql >> Database >  >> NoSQL >> MongoDB

Aantal exemplaren van string in een veld tellen in documenten die zijn gegroepeerd op een ander veld in MongoDB?

U kunt onderstaande vraag proberen:

db.collection.aggregate([
    /** Group all docs based on flightNum & status & count no.of occurances */
    {
        $group: {
            _id: {
                flightNum: "$flightNum",
                status: "$status"
            },
            count: {
                $sum: 1
            }
        }
    },
    /** Group on flightNum & push an objects with key as status & value as count */
    {
        $group: {
            _id: "$_id.flightNum",
            status: {
                $push: {
                    k: "$_id.status",
                    v: "$count"
                }
            }
        }
    },
    /** Recreate status field as an object of key:value pairs from an array of objects */
    {
        $addFields: {
            status: {
                $arrayToObject: "$status"
            }
        }
    },
    /** add flightNum inside status object */
    {
        $addFields: {
            "status.flightNum": "$_id"
        }
    },
    /** Replace status field as new root for each doc in coll */
    {
        $replaceRoot: {
            newRoot: "$status"
        }
    }
])

Test : MongoDB-Playground




  1. Hoe stel ik _id in op db-document in Mongoose?

  2. Wat is de juiste manier om met ISODate in Mongoose te werken?

  3. Hoe eenmalige DB-synchronisatie naar een andere DB in MongoDB uit te voeren?

  4. Zoek verschillende waarden groep door een ander veld mongodb