当前位置: 首页 > 工具软件 > age > 使用案例 >

postgresql age

邵星河
2023-12-01

postgresql age
计算出指定时间点到当前时间的时间差

# select extract(year from age('2013-01-01'::date));
 date_part 
-----------
         6

结果是一串人类可读的文字,现在需要截取其中自己需要的部分

# select extract(year from age('2019-01-01'::date));
 date_part 
-----------
         0

https://www.postgresql.org/docs/10/functions-datetime.html

 类似资料:

相关阅读

相关文章

相关问答