MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Verwendung von Multiply-Aggregation mit MongoDB

Zitieren Sie die total-cores Schlüssel, damit es korrekt mit dem eingebetteten Bindestrich geparst wird:

c.aggregate({ 
    $project: { 
        hostname: 1, 
        "total-cores": {$multiply: ["$processors.sockets","$processors.cores"]}, 
        virtual: 1, 
        _id: 0  
    }
});