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

Sắp xếp theo tài liệu nhỏ trong MongoDB

Để sắp xếp theo tài liệu con, hãy sử dụng $ sort trong MongoDB. Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -

> db.demo245.insertOne(
...   {
...      "_id": 101,
...      "deatils": [
...         { "DueDate": new ISODate("2019-01-10"), "Value": 45},
...         {"DueDate": new ISODate("2019-11-10"), "Value": 34 }
...      ]
...   }
...);
{ "acknowledged" : true, "insertedId" : 101 }
> db.demo245.insertOne(
...   {
...      "_id": 102,
...      "details": [
...         { "DueDate": new ISODate("2019-12-11"), "Value": 29},
...         {"DueDate": new ISODate("2019-03-10"), "Value":  78}
...      ]
...   }
...);
{ "acknowledged" : true, "insertedId" : 102 }

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

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

{
   "_id" : 101, "deatils" : [
      { "DueDate" : ISODate("2019-01-10T00:00:00Z"), "Value" : 45 },
      { "DueDate" : ISODate("2019-11-10T00:00:00Z"), "Value" : 34 }
   ]
}
{
   "_id" : 102, "details" : [
      { "DueDate" : ISODate("2019-12-11T00:00:00Z"), "Value" : 29 },
      { "DueDate" : ISODate("2019-03-10T00:00:00Z"), "Value" : 78 } \
   ] 
}

Sau đây là truy vấn để sắp xếp theo tài liệu con -

> db.demo245.aggregate([
...   { "$unwind": "$details" },
...   { "$sort": { "_id": 1, "details.Value": -1 } },
...   { "$group": {
...      "_id": "$_id",
...      "details": { "$push": "$details" }
...   }},
...   { "$sort": { "details.Value": -1 } }
...])

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

{ "_id" : 102, "details" : [ { "DueDate" : ISODate("2019-03-10T00:00:00Z"), "Value" : 78 }, { "DueDate" : ISODate("2019-12-11T00:00:00Z"), "Value" : 29 } ] }