बहुत सारी परेशानी के बाद, मैंगो शेल का प्रयोग करके मुझे अपने प्रश्न का समाधान मिल गया है।
स्यूडोकोड:
# To get the list of customer whose score is greater than 2000
cust_to_clear=db.col.aggregate(
{$match:{$or:[{status:'A'},{status:'B'}]}},
{$group:{_id:'$cust_id',total:{$sum:'$score'}}},
{$match:{total:{$gt:500}}})
# To loop through the result fetched from above code and update the clear
cust_to_clear.result.forEach
(
function(x)
{
db.col.update({cust_id:x._id},{$set:{clear:'Yes'}},{multi:true});
}
)
कृपया टिप्पणी करें, यदि आपके पास एक ही प्रश्न के लिए कोई अलग समाधान है।