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

MongoDB에서 날짜 부분을 날짜로 변환

<시간/>

먼저 문서로 컬렉션을 생성해 보겠습니다. −

> db.demo386.insert(
...    {
...       details: { Month: 02, Day: 27, Year: 2020 }
...    }
... );
WriteResult({ "nInserted" : 1 })

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

> db.demo386.find();

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

{ "_id" : ObjectId("5e5bd9a222064be7ab44e7f7"), "details" : { "Month" : 2, "Day" : 27, "Year" : 2020 } }

다음은 날짜 부분을 날짜로 변환하는 쿼리입니다 -

> db.demo386.aggregate(
...    {"$project":{
...       "_id":0,
...       "DueDate":{
...          "$dateToString":{
...             "format":"%m-%d-%Y",
...             "date":{"$dateFromParts": {"year":"$details.Year","month":"$details.Month","day":"$details.Day"}}
...          }
...       }
...    }}
... );

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

{ "DueDate" : "02-27-2020" }