MongoDB
 sql >> база данни >  >> NoSQL >> MongoDB

Брой брой екземпляри на низ в поле в документи, групирани в друго поле в MongoDB?

Можете да опитате по-долу със заявката:

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"
        }
    }
])

Тест: MongoDB-Playground




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Node.js и Mongodb - TypeError:undefined не е функция

  2. Модулът не е намерен:Грешка:Не може да се разреши модул „module“ mongodb при групиране с webpack

  3. Възможно ли е да настроите MongoDB в споделена хостинг среда?

  4. Активирайте разширението mongo PHP в уебсайтовете на Microsoft Azure

  5. премахване на scanAndOrder :true в резултата от моята MongoDB заявка