sql >> Databasteknik >  >> NoSQL >> MongoDB

Få procentsatser med MongoDB sammanlagd $grupp

Tja jag tror percentage ska vara sträng om värdet innehåller %

Först måste du count numret 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 vs MySQL

  2. MongoDB-frågor med null-värde

  3. Hur kan jag vara värd för min egen Parse Server på Heroku med MongoDB?

  4. HDFS Tutorial – En komplett introduktion till HDFS för nybörjare