/*以当前时间为准,取前三个小时后两个小时的分钟枚举*/
with x as(
select 开始时间+level * 1/24/60 as 分钟
  from (select sysdate+2/24 as 结束时间,sysdate-3/24 as 开始时间
          from dual)
connect by level <= 300
)
select to_char(分钟,'yyyy-mm-dd hh24:mi')||':00' as 时间枚举 from x

Oracle 以当前时间为准,取前三个小时后两个小时的分钟枚举

相关文章:

  • 2022-12-23
  • 2022-03-09
  • 2022-12-23
  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2021-09-02
相关资源
相似解决方案