select extract(day from age('2013-04-06','2013-04-04'));`
给了我几天的时间!即:2
天
但是当我有不同的月份时它失败了:
select extract(day from age('2013-05-02','2013-04-01'));
所以我需要的是把天数当作32
天数
select extract(day from age('2013-04-06','2013-04-04'));`
给了我几天的时间!即:2
天
但是当我有不同的月份时它失败了:
select extract(day from age('2013-05-02','2013-04-01'));
所以我需要的是把天数当作32
天数
减法似乎更直观。
select '2013-05-02'::date - '2013-04-01'::date
运行此查询以查看为什么结果是 31 而不是 32
with dates as (
select generate_series('2013-04-01'::date, '2013-05-02'::date, '1 day')::date as end_date,
'2013-04-01'::date as start_date
)
select end_date, start_date, end_date - start_date as difference
from dates
order by end_date
今天和今天之间的差异是零天。这是否重要取决于应用程序。如果需要,您可以添加 1。