試すことができます
-
$group
userId
によるtotalSeen
を取得します$cond
を使用してカウントstatus
の場合seen
、$sum
を使用して通知の総数を取得します 、 -
$project
必須フィールドを表示し、$divide
を使用してパーセンテージを計算します および$multiply
db.collection.aggregate([
{
$group: {
_id: "$userId",
totalSeen: {
$sum: { $cond: [{ $eq: ["$status", "seen"] }, 1, 0] }
},
total: { $sum: 1 }
}
},
{
$project: {
_id: 0,
userId: "$_id",
notificationPercentage: {
$multiply: [{ $divide: ["$totalSeen", "$total"] }, 100]
}
}
}
])