Bạn có thể tổng hợp như sau:
-
$group
theosubject
vàimportance
, nhận số lượng tương ứng. - Sau đó, đến phần phức tạp,
$project
, nó sẽ phát triển tuyến tính theo số lượng tùy chọn màimportance
lĩnh vực có thể giữ. hiện tại nó là ba -high
,low
vàmedium
. -
$group
kết quả trả về một lần nữa bởisubject
và sử dụng$sum
toán tử đểaccumulate
số lượng cho các giá trị khác nhau của trường quan trọng.
mã mẫu:
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"}}},
])
dữ liệu thử nghiệm:
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"}
])
kết quả:
{ "_id" : "geography", "low" : 2, "medium" : 0, "high" : 0 }
{ "_id" : "history", "low" : 2, "medium" : 1, "high" : 1 }