Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

MongoDB에서 배열을 정렬하는 가장 쉬운 방법

<시간/>

MongoDB에서 배열을 정렬하는 가장 쉬운 방법은 $sort를 사용하는 것입니다. 문서로 컬렉션을 만들자 −

> db.demo242.insertOne(
...
...   {"details2":
...      [
...         {"ShipingDate":new ISODate("2019-10-11"),"Price":1400},
...         {"ShipingDate":new ISODate("2019-10-01"),"Price":1600 }
...      ]
...   }
...
...);
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e4429229af932883c61ea44")
}

find() 메서드를 사용하여 컬렉션의 모든 문서 표시 -

> db.demo242.find();

이것은 다음과 같은 출력을 생성합니다 -

{
   "_id" : ObjectId("5e4429229af932883c61ea44"), "details2" : [
      { "ShipingDate" : ISODate("2019-10-11T00:00:00Z"), "Price" : 1400 },
      { "ShipingDate" : ISODate("2019-10-01T00:00:00Z"), "Price" : 1600 }
   ] 
}

다음은 MongoDB에서 배열을 정렬하는 쿼리입니다 -

> db.demo242.aggregate([ {$unwind: "$details2"}, {$sort: {"details2.ShipingDate":1}}, {$group: {_id:"$_id", details2: {$push:"$details2.ShipingDate"}}} ]);

이것은 다음과 같은 출력을 생성합니다 -

{ "_id" : ObjectId("5e4429229af932883c61ea44"), "details2" : [ ISODate("2019-10-01T00:00:00Z"), ISODate("2019-10-11T00:00:00Z") ] }