将列的字符串转换为多行

时间:2016-06-27 11:31:52

标签: oracle hierarchical-data

对于以下数据

Col1
----
1
23
34
124

输出应如下所示

Out
1
2
3
4

我尝试了下面的分层查询,但它提供了重复的数据

select substr(col1, level, 1)
  from table1
connect by level <= length(col1);

我不能使用distinct,因为这是我必须使用此查询的示例和主表具有相当大的数据。

由于

0 个答案:

没有答案