如何将嵌套表格展平成新行?
How to flatten nested tables into a new row?
我有一个 table,其中一列包含嵌套的 table 单行。
mytable
title | col
a | {1, 2}
b | {3}
c | NULL
我需要做的是将嵌套的 table 展平为逗号分隔的字符串。
Result:
{
a: "1, 2"
b: "3"
c: NULL
}
为了我的特定目的,我不能只让结果采用 table 形式(上面的内容非常简单,但它可以解决我的问题)。我认为我得到的最接近的是以下语句(刚刚返回 1、2、3、null)。
select t.*
from mytable, table(mytable.col)(+) t;
我已经尝试 listagg
,但无法让它适用于我的情况。我目前正在尝试阅读更多有关嵌套 tables 的内容,但进展缓慢,而且我无法找到有关此特定问题的任何信息(嵌套 tables)。
这是否满足您的需求? listagg 不符合您的目的是什么意思?
CREATE OR REPLACE TYPE my_tab_t AS TABLE OF VARCHAR2(30);
/
CREATE TABLE nested_table (id NUMBER, col1 my_tab_t)
NESTED TABLE col1 STORE AS col1_tab;
INSERT INTO nested_table VALUES (1, my_tab_t('A'));
INSERT INTO nested_table VALUES (2, my_tab_t('B', 'C'));
INSERT INTO nested_table VALUES (3, my_tab_t('D', 'E', 'F'));
SELECT TMP.id,
listagg(Column_Value,',')
WITHIN GROUP(ORDER BY Column_Value)
FROM (SELECT id,
COLUMN_VALUE
FROM nested_table t1,
TABLE(t1.col1) t2
) TMP
GROUP
BY id
我有一个 table,其中一列包含嵌套的 table 单行。
mytable
title | col
a | {1, 2}
b | {3}
c | NULL
我需要做的是将嵌套的 table 展平为逗号分隔的字符串。
Result:
{
a: "1, 2"
b: "3"
c: NULL
}
为了我的特定目的,我不能只让结果采用 table 形式(上面的内容非常简单,但它可以解决我的问题)。我认为我得到的最接近的是以下语句(刚刚返回 1、2、3、null)。
select t.*
from mytable, table(mytable.col)(+) t;
我已经尝试 listagg
,但无法让它适用于我的情况。我目前正在尝试阅读更多有关嵌套 tables 的内容,但进展缓慢,而且我无法找到有关此特定问题的任何信息(嵌套 tables)。
这是否满足您的需求? listagg 不符合您的目的是什么意思?
CREATE OR REPLACE TYPE my_tab_t AS TABLE OF VARCHAR2(30);
/
CREATE TABLE nested_table (id NUMBER, col1 my_tab_t)
NESTED TABLE col1 STORE AS col1_tab;
INSERT INTO nested_table VALUES (1, my_tab_t('A'));
INSERT INTO nested_table VALUES (2, my_tab_t('B', 'C'));
INSERT INTO nested_table VALUES (3, my_tab_t('D', 'E', 'F'));
SELECT TMP.id,
listagg(Column_Value,',')
WITHIN GROUP(ORDER BY Column_Value)
FROM (SELECT id,
COLUMN_VALUE
FROM nested_table t1,
TABLE(t1.col1) t2
) TMP
GROUP
BY id