MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Łączne wartości ze wszystkich kluczy w poddokumencie

W strukturze agregacji mongodb nie ma sposobu na traktowanie klucza wewnątrz dokumentu jako danych, które można badać lub manipulować. Rozwiązaniem jest przekształcenie tego, czego używasz jako kluczy (np. typ owoców i nazwa sklepu) w wartości takie jak:

{
    "_id" : "doc1",
    "stores":[
        {
            // store name is a value
            "name":"store_A",
            "inventory": [
            {
                // so is fruit type
                "type" : "apple",
                "count" : 50
            },
            {
                "type" : "orange",
                "count" : 20
            }
            ]
        },
        {
            "name": "store_B",
            "inventory": [
            {
                "type" : "orange",
                "count" : 15
            }
            ]
        }
    ]
}

Pozwala to na łatwiejszą pracę z tymi danymi w agregacji:

db.coll.aggregate([
    // split documents by store name
    {$unwind:"$stores"},
    // split documents further by fruit type
    {$unwind:"$stores.inventory"},
    // group documents together by store/fruit type, count quantities of fruit
    {$group:{"_id":{"store":"$stores.name", "fruit":"$stores.inventory.type"},
             "count":{$sum:"$stores.inventory.count"}}},
    // reformat the data to look more like your specification
    {$project:{
        "store":"$_id.store",
        "fruit":"$_id.fruit",
        "_id":0,
        "count":1}}])

Wynik wygląda następująco:

{
    "result" : [
        {
            "count" : 15,
            "store" : "store_B",
            "fruit" : "apple"
        },
        {
            "count" : 15,
            "store" : "store_B",
            "fruit" : "orange"
        },
        {
            "count" : 30,
            "store" : "store_A",
            "fruit" : "orange"
        },
        {
            "count" : 50,
            "store" : "store_A",
            "fruit" : "apple"
        }
    ],
    "ok" : 1
}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. używanie zmiennej w aktualizacji mongodb

  2. MongoDB 3.6 jak przekonwertować ciąg na identyfikator obiektu

  3. Jaka jest różnica między rozmiarem a rozmiarem magazynu wyświetlanym przez funkcję Mongo stats()?

  4. Czy mogę wywołać rs.initiate() i rs.Add() z node.js przy użyciu sterownika MongoDb?

  5. Mongodb na Ubuntu