在 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" }
广告