在postgresql之间的两个时间戳之间计数几个月?

前端之家收集整理的这篇文章主要介绍了在postgresql之间的两个时间戳之间计数几个月?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想计算两个日期之间的几个月.

做:

SELECT TIMESTAMP '2012-06-13 10:38:40' - TIMESTAMP '2011-04-30 14:38:40';

退货:
0年0个月409天20小时0分0.00秒

所以:

SELECT extract(month from TIMESTAMP '2012-06-13 10:38:40' - TIMESTAMP '2011-04-30 14:38:40');

返回0.

age(timestamp1,timestamp2) => returns interval

我们尝试从间隔中提取年和月,并相应地添加它们.

select extract(year from age(timestamp1,timestamp2))*12 + extract(month from age(timestamp1,timestamp2))

原文链接:https://www.f2er.com/postgresql/192545.html

猜你在找的Postgre SQL相关文章