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

Få procenter med MongoDB samlet $gruppe

Nå jeg tror percentage skal være streng, hvis værdien indeholder %

Først skal du count nummeret på dokumentet.

var nums = db.collection.count();

db.collection.aggregate(
    [
        { "$group": { "_id": {"type":  "$type"}, "count": { "$sum": 1 }}},    
        { "$project": { 
            "count": 1, 
            "percentage": { 
                "$concat": [ { "$substr": [ { "$multiply": [ { "$divide": [ "$count", {"$literal": nums }] }, 100 ] }, 0,2 ] }, "", "%" ]}
            }
        }
    ]
)

Resultat

{ "_id" : { "type" : "short" }, "count" : 3, "percentage" : "60%" }
{ "_id" : { "type" : "big" }, "count" : 2, "percentage" : "40%" }


  1. MongoDB 2.4.1 er nu tilgængelig på ScaleGrid

  2. Installation af Redis på Ubuntu 16.04/18.04

  3. Sådan adskilles redis-database for samme to app i node.js

  4. Er det OK at forespørge en MongoDB flere gange pr. anmodning?