为什么要选择'2019-05-03':: timestamp-'2018-05-07':: timestamp <'1 year 1 day':: INTERVAL;在PostgreSQL中返回FALSE?

时间:2019-05-03 21:07:07

标签: postgresql

我正在尝试比较两个日期,并且如果第一个日期比第二个日期少“ 1年1天”,则返回TRUE

使用361天而不是“ 1年1天”会返回FALSE,但这基于why justify_interval('360 days'::interval) results '1 year'是有意义的。

但是当我跑步时 SELECT '2019-05-03'::timestamp - '2018-05-07'::timestamp < '1 year 1 day'::INTERVAL; 我得到FALSE,然后我跑步

SELECT '2019-05-03'::timestamp - '1 year 1 day'::INTERVAL < '2018-05-07'::timestamp; 我得到TRUE

为什么这些返回不同的东西?

1 个答案:

答案 0 :(得分:7)

我在文档中找不到它,但这是由于间隔表示和比较的方式所致。

请注意:

select timestamp '2019-05-03' - timestamp '2018-05-07' < interval '366 day';

为您提供了TRUE的预期结果。

要比较两个间隔,Postgres首先将间隔转换为integers。在涉及年份的情况下,这是非常幼稚的方式:

/*
 *      interval_relop  - is interval1 relop interval2
 *
 * Interval comparison is based on converting interval values to a linear
 * representation expressed in the units of the time field (microseconds,
 * in the case of integer timestamps) with days assumed to be always 24 hours
 * and months assumed to be always 30 days.  To avoid overflow, we need a
 * wider-than-int64 datatype for the linear representation, so use INT128.
 */

因此,您的查询是在询问:

select 361 * 24 * 3600 * 1000000 < (1 * 12 * 30 * 24 * 3600 * 1000000) + (1 * 24 * 3600 * 1000000);

或者,

select 31,190,400,000,000 < 31,190,400,000,000;

这显然是错误的。 ^^