Có nhiều cách,
-
$match
loại bỏ dữ liệu không mong muốn -
$lookup
tham gia các bộ sưu tập -
$unwind
để giải cấu trúc mảng -
$group
để tạo lại mảng và$sum
giúp tăng 1 khi sử dụng$cond
tình trạng
Đây là tập lệnh
db.Accounts.aggregate([
{ $match: { _id: 2 } },
{
$lookup: {
from: "Responses",
localField: "_id",
foreignField: "accountId",
as: "responses"
}
},
{
$unwind: "$responses"
},
{
$group: {
_id: "$_id",
name: { $first: "$name" },
trueResponses: {
$sum: {
$cond: [{ $eq: [ "$responses.res", true]},1,0]
}
},
falseResponses: {
$sum: {
$cond: [{ $eq: [ "$responses.res", false]},1,0]
}
}
}
}
])
Làm việc sân chơi Mongo