-4
如何顯示從db.anycollection.aggregate結果(..)
// drop collectio
db.collections.drop()
// insert data
db.collections.insertMany([
{cust_id: "A123", anount: 500, status : "A"},
{cust_id: "A123", anount: 250, status : "A"},
{cust_id: "B212", anount: 200, status : "A"},
{cust_id: "A123", anount: 300, status : "D"}
])
// aggregate throuhgh thr collection
var results = db.collection.aggregate([
{$match:{status:"A"}},
{$group:{_id: "$cust_id", total:{$sum:"$amount")))
])