Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有birth_date,哪个函数可以让我从今天的日期中减去它?谢谢
我使用 NOW() 尝试了 DateDiff ,但这没有用。
我想知道这个人截至今天的年龄
dateDiff功能应该可以工作。确保在数据集中而不是在分析中添加计算字段。
dateDiff
我能够使以下工作正常: dateDiff({my_date},now())
dateDiff({my_date},now())
确保您的生日字段实际上是时间或日期类型,而不是字符串。如果是字符串,则需要使用该parseDate函数将其转换为日期。
parseDate
需要注意的一件事是,dateDiff它将返回天数的差异。我假设这对大多数人来说可能是一个非常大的数字,因此您可能想dateDiff({my_date},now())/365估计他们的年龄。
dateDiff({my_date},now())/365