2

我正在努力处理一些复杂的分层数据。我已成功使用CONNECT BY查询将行限制为我想要的子集 - 我曾经SYS_CONNECT_BY_PATH将完整的树返回到感兴趣的节点。

这基本上给了我一些这样的行(由'|'分隔):

id  path
-------------------
1, '|10|11|12|13'
2, '|10|14|15'
3, '|16|11|12|13'
4, '|16|17'

UNPIVOT现在 - 我的挑战是将这些值解包或重新转换为这样的结构:

id  ord node
-------------
1, 1, 10
1, 2, 11
1, 3, 12
1, 4, 13
2, 1, 10
2, 2, 14
2, 3, 15
3, 1, 16
3, 2, 11
3, 3, 12
3, 4, 13
4, 1, 16
4, 2, 17

我认为我无法UNPIVOT直接使用它,因为它正在处理一组固定的列 - 这不是。

我正在使用 PIPELINE 函数来解包它,但坦率地说 - 将所有这些行传递给函数是一个问题,因为它们来自另一个查询。我想知道是否有人有办法将 SYS_CONNECT_BY_PATH 结果集中的值重新转换为可能是纯 sql 解决方案的行 - 可能使用 REGEX 解析......

帮助总是很感激 - 谢谢

4

1 回答 1

4

是的,UNPIVOT操作员不会在这里做很多事情来帮助您产生所需的输出。

作为您可以regexp_count()常规使用(11g R1 版本及更高版本)的方法之一

表达式函数来计算所有出现的数字,然后使用regexp_substr()正则

表达式函数提取数字如下:

-- sample of data 
SQL> with t1(id1, path1) as(
  2    select 1, '|10|11|12|13' from dual union all
  3    select 2, '|10|14|15' from dual union all
  4    select 3, '|16|11|12|13' from dual union all
  5    select 4, '|16|17' from dual
  6  ),
  7  occurrences(ocr) as( -- occurrences 
  8    select level
  9     from ( select max(regexp_count(path1, '[^|]+')) as mx_ocr
 10              from t1
 11          ) t
 12   connect by level <= t.mx_ocr
 13  )
 14  select id1
 15       , row_number() over(partition by id1 order by id1) as ord
 16       , node
 17    from ( select q.id1
 18                , regexp_substr(q.path1, '[^|]+', 1, o.ocr)        as node
 19             from t1 q
 20            cross join occurrences o
 21          )
 22  where  node is not null
 23  order by id1, 2, node
 24  ;

结果:

       ID1        ORD NODE
---------- ---------- ------------------------------------------------
         1          1 10
         1          2 11
         1          3 12
         1          4 13
         2          1 10
         2          2 14
         2          3 15
         3          1 11
         3          2 12
         3          3 13
         3          4 16
         4          1 16
         4          2 17

13 rows selected

作为另一种方法,从 10g 版本及更高版本开始,您可以使用model子句:

 SQL> with t1(id1, path1) as(
  2    select 1, '|10|11|12|13' from dual union all
  3    select 2, '|10|14|15' from dual union all
  4    select 3, '|16|11|12|13' from dual union all
  5    select 4, '|16|17' from dual
  6  )
  7  select id1
  8       , ord
  9       , node
 10    from t1
 11   model
 12   partition by ( rownum as id1)
 13   dimension by ( 1 as ord)
 14   measures( path1
 15           , cast(null as varchar2(11)) as node
 16           , nvl(regexp_count(path1, '[^|]+'), 0) as ocr )
 17   rules(
 18      node[for ord from 1 to ocr[1] increment 1] = 
 19          regexp_substr(path1[1], '[^|]+', 1, cv(ord))
 20  )
 21  order by id1, ord, node
 22  ;

结果:

       ID1        ORD NODE
---------- ---------- -----------
         1          1 10
         1          2 11
         1          3 12
         1          4 13
         2          1 10
         2          2 14
         2          3 15
         3          1 16
         3          2 11
         3          3 12
         3          4 13
         4          1 16
         4          2 17

13 rows selected

SQLFiddle 演示

于 2013-08-22T15:25:05.890 回答