Để nhóm các mục mảng, hãy sử dụng $ group cùng với $ sort. Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -
> db.demo566.insertOne( ... { ... ... "ProductInformation" : [ ... { ... "ProductName" : "Product-1", ... "ProductPrice" :100 ... }, ... { ... "ProductName" : "Product-2", ... "ProductPrice" :1100 ... }, ... { ... "ProductName" : "Product-3", ... "ProductPrice" :100 ... }, ... { ... "ProductName" : "Product-4", ... "ProductPrice" :1100 ... }, ... { ... "ProductName" : "Product-5", ... "ProductPrice" :100 ... } ... ] ... ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5e908e2339cfeaaf0b97b57a") }
Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -
> db.demo566.find();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : ObjectId("5e908e2339cfeaaf0b97b57a"), "ProductInformation" : [ { "ProductName" : "Product-1", "ProductPrice" : 100 }, { "ProductName" : "Product-2", "ProductPrice" : 1100 }, { "ProductName" : "Product-3", "ProductPrice" : 100 }, { "ProductName" : "Product-4", "ProductPrice" : 1100 }, { "ProductName" : "Product-5", "ProductPrice" : 100 } ] }
Sau đây là truy vấn để nhóm các mục mảng -
> db.demo566.aggregate([ ... { ... "$unwind": "$ProductInformation" ... }, ... { ... "$group": { ... "_id": "$ProductInformation.ProductPrice", ... "Value": { "$sum" : 1 } ... } ... }, ... { "$sort": { "_id" :1 } } ... ])
Điều này sẽ tạo ra kết quả sau -
{ "_id" : 100, "Value" : 3 } { "_id" : 1100, "Value" : 2 }