Můžete agregovat následovně:
$group
podlesubject
aimportance
, získejte příslušné počty.- Pak přichází ta záludná část, podmíněná
$project
, rostlo by lineárně s ohledem na počet možnostíimportance
pole mohlo držet. aktuálně je to tři -high
,low
amedium
. $group
výsledek zpět podlesubject
a použijte$sum
operátoraccumulate
počty pro různé hodnoty pole důležitosti.
ukázkový kód:
db.t.aggregate([
{$group:{"_id":{"subject":"$subject",
"importance":"$importance"},
"count":{$sum:1}}},
{$project:{"_id":0,
"subject":"$_id.subject",
"result":{$cond:[
{$eq:["$_id.importance","high"]},
{"high":"$count"},
{$cond:[{$eq:["$_id.importance","low"]},
{"low":"$count"},
{"medium":"$count"}]}]}}},
{$group:{"_id":"$subject",
"low":{$sum:"$result.low"},
"medium":{$sum:"$result.medium"},
"high":{$sum:"$result.high"}}},
])
testovací údaje:
db.t.insert([
{"subject":"history","importance":"high"},
{"subject":"geography","importance":"low"},
{"subject":"history","importance":"low"},
{"subject":"history","importance":"medium"},
{"subject":"geography","importance":"low"},
{"subject":"history","importance":"low"}
])
výsledek:
{ "_id" : "geography", "low" : 2, "medium" : 0, "high" : 0 }
{ "_id" : "history", "low" : 2, "medium" : 1, "high" : 1 }