【发布时间】:2021-11-16 13:11:26
【问题描述】:
我的数据如下所示
with test(col) as (
select '01-06' from dual union all
select '45-52' from dual
) select col from test ;
必需的操作
COL
01
02
.
.
.
06
45
46
.
.
52
实际上我的桌数是 20,000。我用过connect by,但速度很慢。
【问题讨论】: