0

例如,我在数据库中有允许的范围 - (08:00-12:00)、(12:00-15:00) 和我想要测试的请求范围 - (09:00-14:00)。有什么办法可以理解我的测试范围包含在数据库的允许范围内。它可以分成更多部分,我只想知道我的范围是否完全适合数据库中的时间范围列表。

4

1 回答 1

0

你不提供表结构,所以我不知道数据类型。让我们假设这些是文本:

t=# select '(8:00, 12:30)' a,'(12:00, 15:00)' b,'(09:00, 14:00)' c;
       a       |       b        |       c
---------------+----------------+----------------
 (8:00, 12:30) | (12:00, 15:00) | (09:00, 14:00)
(1 row)

那么你怎么做:

t=# \x
Expanded display is on.
t=# with d(a,b,c) as (values('(8:00, 12:30)','(12:00, 15:00)','(09:00, 14:00)'))
, w as (select '2017-01-01 ' h)
, timerange as (
select
  tsrange(concat(w.h,split_part(substr(a,2),',',1))::timestamp,concat(w.h,split_part(a,',',2))::timestamp) ta
, tsrange(concat(w.h,split_part(substr(b,2),',',1))::timestamp,concat(w.h,split_part(b,',',2))::timestamp) tb
, tsrange(concat(w.h,split_part(substr(c,2),',',1))::timestamp,concat(w.h,split_part(c,',',2))::timestamp) tc
from w
join d on true
)
select *, ta + tb glued, tc <@ ta + tb fits from timerange;
-[ RECORD 1 ]----------------------------------------
ta    | ["2017-01-01 08:00:00","2017-01-01 12:30:00")
tb    | ["2017-01-01 12:00:00","2017-01-01 15:00:00")
tc    | ["2017-01-01 09:00:00","2017-01-01 14:00:00")
glued | ["2017-01-01 08:00:00","2017-01-01 15:00:00")
fits  | t

首先,您需要将您的时间“转换”为时间戳,因为 postgres 中没有时间范围,因此我们在所有时间w.h = 2017-01-01(适合我们的情况)。

然后使用union https://www.postgresql.org/docs/current/static/functions-range.html#RANGE-FUNCTIONS-TABLE运算符获得“粘合”间隔

最后检查范围是否包含在带有<@运算符的较大范围内

于 2017-09-15T09:39:02.757 回答