如何使用间隔 1 分钟将两个日期之间的时间序列数据生成到 Oracle PL/SQL 中的 table?

How to generate timeseries data into table in Oracle PL/SQL between two date using interval 1 minute?

我是这个话题的新手。在我的设置中,Oracle 12c 标准版数据库和 PL/SQL 开发人员。

我有一个 table 结构如下:

int id; 
timestamp time_mon;
double price; 

我需要将数据插入到 table 中,该 table 以 02.01.2018 00:00 - 02.01.2019 00:00 的某个时间间隔生成,间隔为 5 分钟。我无法应付这个任务。请帮助我并显示 SQL 代码示例。

假设你的意思是 02.01.2018 = 1 月 2 日,这可能是一种方式:

insert into yourTable(id, time_mon, price)
select ??? as id,                                                      -- to be completed
       date '2018-01-02' + interval '5' minute * (level -1) as time_mon,
       ??? as price                                                    -- to be completed
from dual
connect by date '2018-01-02' + interval '5' minute * (level -1) <= date '2019-01-02'