gpt4 book ai didi

mongodb - 将日期差异转换为年份以计算 MongoDB 中的年龄

转载 作者:行者123 更新时间:2023-12-04 14:34:44 26 4
gpt4 key购买 nike

我正在使用以下来计算时间戳差异中的年龄。

db.getCollection('person').aggregate( [
{ $project: {
item: 1,
DOB: "$personal.DOB",
dateDifference: { $subtract: [ new Date(), "$personal.DOB" ] }
} }
] )

我得到了 dateDifference 中的数值.我想通过除以 (365*24*60*60*1000) 将其转换为年。但我不知道如何在上面的查询中指定这个公式。我尝试了以下操作,但它没有返回任何值

db.getCollection('person').aggregate( [ 
{ $project: {
item: 1,
DOB:"$personal.DOB",
dateDifference: ({ $subtract: [ new Date(), "$personal.DOB" ] })/(365*24*60*60*1000)
} }
] )

最佳答案

更新:MongoDB 5.0 解决方案,也会考虑闰年

db.collection.aggregate([
{ $addFields:
{ age: { $dateDiff: { startDate: "$dob", endDate: "$$NOW", unit: "year" } } }
}
])
更新:我们可以组合聚合运算符。请注意,此解决方案不会给出准确的结果,因为它不考虑闰年
db.getCollection('person').aggregate( [ { 
$project: {
date:"$demographics.DOB",
age: {
$divide: [{$subtract: [ new Date(), "$Demographics.DOB" ] },
(365 * 24*60*60*1000)]
}
}
} ] )

旧解决方案 $let
我能够通过 $let 解决这个问题表达
db.getCollection('person').aggregate( [ { 
$project: {
item: 1,
date:"$demographics.DOB",
age: {
$let:{
vars:{
diff: {
$subtract: [ new Date(), "$demographics.DOB" ]
}
},
in: {
$divide: ["$$diff", (365 * 24*60*60*1000)]
}
}
}
}
} ] )

关于mongodb - 将日期差异转换为年份以计算 MongoDB 中的年龄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39381450/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com