Cóż, możesz użyć potoku agregacji do grupowania i projektowania danych w formacie, który chcesz zobaczyć.
db.col.aggregate([
{$group:{_id:"$Appname", softcount:{$max:"$softcount"}}},
{$project:{_id:0, "Appname":"$_id", softcount:1}},
{$sort:{softcount:-1}},
{$limit: 5}
])
spowoduje to wydrukowanie następującego wyniku, pod warunkiem, że dane wejściowe są tym, co wspomniałeś w swoim pytaniu.
{
"softcount" : 10.0,
"Appname" : "ktr"
}
{
"softcount" : 8.0,
"Appname" : "rsr"
}
{
"softcount" : 6.0,
"Appname" : "ssl"
}
{
"softcount" : 5.0,
"Appname" : "ppr"
}
{
"softcount" : 4.0,
"Appname" : "crs"
}
Więcej informacji o strukturze agregacji MongoDB można znaleźć na stronie https://docs.mongodb.org/manual/aggregation /