我如何将工作时间转换为布尔值?

Kri*_*pta 1 sql time boolean-logic granularity oracle-sqldeveloper

我如何转换工作时间 08:00:00-11:59:00;13:00:00-16:59:00; 成 48 位布尔格式,如

 "000000000000000011111111001111111100000000000000" 
Run Code Online (Sandbox Code Playgroud)

其中每个数字是指使用 Oracle SQL 查询的 30 分钟粒度?

Ale*_*ole 5

假设您从一个字符串开始,该字符串始终具有以分号分隔的 from/to 时间对,并在最后一对后尾随分号;这些时间总是 HH24:MI:SS,如图所示,秒总是零;然后...您可以将字符串拆分为多个字符串对,代表每个从/到对:

select regexp_substr('08:00:00-11:59:00;13:00:00-16:59:00;', '(.*?)(;|-|$)', 1, (2 * level - 1), null, 1),
  regexp_substr('08:00:00-11:59:00;13:00:00-16:59:00;', '(.*?)(;|-|$)', 1, 2 * level, null, 1)
from dual
connect by level <= regexp_count('08:00:00-11:59:00;13:00:00-16:59:00;', ';')
Run Code Online (Sandbox Code Playgroud)
select regexp_substr('08:00:00-11:59:00;13:00:00-16:59:00;', '(.*?)(;|-|$)', 1, (2 * level - 1), null, 1),
  regexp_substr('08:00:00-11:59:00;13:00:00-16:59:00;', '(.*?)(;|-|$)', 1, 2 * level, null, 1)
from dual
connect by level <= regexp_count('08:00:00-11:59:00;13:00:00-16:59:00;', ';')
Run Code Online (Sandbox Code Playgroud)

您可以在一个正常的一天内生成所有半小时的块(选择一个不受 DST 切换影响的块):

select to_char(date '2000-01-01' + ((level - 1) / 48), 'HH24:MI":00"')
from dual
connect by level <= 48
Run Code Online (Sandbox Code Playgroud)
REGEXP_S REGEXP_S
-------- --------
08:00:00 11:59:00
13:00:00 16:59:00
Run Code Online (Sandbox Code Playgroud)

然后使用字符串比较将它们连接在一起以查看重叠的地方(这就是时间格式很重要的原因);为简单起见,使用 CTE 提供初始字符串,然后提供前两个查询的结果:

with t1 (working_hours) as (
  select '08:00:00-11:59:00;13:00:00-16:59:00;' from dual
),
t2 (working_from, working_to) as (
  select regexp_substr(working_hours, '(.*?)(;|-|$)', 1, (2 * level - 1), null, 1),
    regexp_substr(working_hours, '(.*?)(;|-|$)', 1, 2 * level, null, 1)
  from t1
  connect by level <= regexp_count(working_hours, ';')
),
t3 (block_from) as (
  select to_char(date '2000-01-01' + ((level - 1) / 48), 'HH24:MI":00"')
  from dual
  connect by level <= 48
)
select block_from,
  case when t2.working_from is null then 0 else 1 end as flag
from t3
left join t2 on t2.working_from <= t3.block_from and t2.working_to >= t3.block_from
Run Code Online (Sandbox Code Playgroud)
select to_char(date '2000-01-01' + ((level - 1) / 48), 'HH24:MI":00"')
from dual
connect by level <= 48
Run Code Online (Sandbox Code Playgroud)

然后最后将它们聚合成一个结果字符串:

with t1 (working_hours) as (
  select '08:00:00-11:59:00;13:00:00-16:59:00;' from dual
),
t2 (working_from, working_to) as (
  select regexp_substr(working_hours, '(.*?)(;|-|$)', 1, (2 * level - 1), null, 1),
    regexp_substr(working_hours, '(.*?)(;|-|$)', 1, 2 * level, null, 1)
  from t1
  connect by level <= regexp_count(working_hours, ';')
),
t3 (block_from) as (
  select to_char(date '2000-01-01' + ((level - 1) / 48), 'HH24:MI":00"')
  from dual
  connect by level <= 48
)
select listagg(case when t2.working_from is null then 0 else 1 end)
  within group (order by t3.block_from) as result
from t3
left join t2 on t2.working_from <= t3.block_from and t2.working_to >= t3.block_from
Run Code Online (Sandbox Code Playgroud)
TO_CHAR(
--------
00:00:00
00:30:00
01:00:00
01:30:00
02:00:00
...
23:00:00
23:30:00
Run Code Online (Sandbox Code Playgroud)

数据库<>小提琴

如果您的初始字符串实际上来自一个表,并且您需要一次对多行进行此转换,则连接拆分会稍微复杂一些,并且递归 CTE 可能更适合该部分。

只是为了好玩,这里有一个例子