Computer >> Máy Tính >  >> Lập trình >> MongoDB

Sắp xếp Bộ sưu tập MongoDB theo giá trị Mảng?


Để sắp xếp bộ sưu tập MongoDB theo giá trị Mảng, hãy sử dụng tổng hợp () 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.demo577.insertOne(
...    {
...
...       "student": {
...          "details": [
...             {
...                Name:"Chris",
...                Score:45
...             },
...             {
...                Name:"Bob",
...                Score:33
...             },
...             {
...                Name:"David",
...                Score:48
...             }
...          ]
...       }
...    }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e916ff1581e9acd78b427ff")
}

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.demo577.find();

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e916ff1581e9acd78b427ff"), "student" : { "details" : [
   { "Name" : "Chris", "Score" : 45 },
   { "Name" : "Bob", "Score" : 33 },
   { "Name" : "David", "Score" : 48 } 
] } }

Sau đây là truy vấn để sắp xếp bộ sưu tập theo giá trị mảng -

> db.demo577.aggregate([
...    {$unwind:"$student"},
...    {$unwind:"$student.details"},
...
...    {$sort:{"student.details.Score":-1}}
... ]);

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e916ff1581e9acd78b427ff"), "student" : { "details" : { "Name" : "David", "Score" : 48 } } }
{ "_id" : ObjectId("5e916ff1581e9acd78b427ff"), "student" : { "details" : { "Name" : "Chris", "Score" : 45 } } }
{ "_id" : ObjectId("5e916ff1581e9acd78b427ff"), "student" : { "details" : { "Name" : "Bob", "Score" : 33 } } }