SQL(Postgres):下个月的时间

时间:2011-07-08 14:13:06

标签: sql postgresql

假设我有时间戳,我该如何计算月份的剩余时间(以天/小时为单位)?

2 个答案:

答案 0 :(得分:1)

postgres=# select date_trunc('month', now() + interval '1 month') - now();
        ?column?         
-------------------------
 23 days 05:59:12.486972
(1 row)

答案 1 :(得分:1)

这不是一个完全重复的问题,但你可以在这里找到几乎确切的答案:stackoverflow.com/questions/6612919 / ...另一个问题严格在几天内处理。