SSIS: Oracle Multiple rows to one column output without STRAGG

后端 未结 2 594
悲哀的现实
悲哀的现实 2021-01-22 04:24

Looking to generate a comma separated list of languages when the ID is the same.

Table 1:

ID | LangID
1    1
1    2
1    3
2    3
2    4
3    1
         


        
2条回答
  •  萌比男神i
    2021-01-22 05:18

    There are various ways to perform string aggregation to produce a comma separated list - see this link for more details. Based on the example in the link, try:

    SELECT x.id,
           LTRIM(MAX(SYS_CONNECT_BY_PATH(x.language,','))
           KEEP (DENSE_RANK LAST ORDER BY curr),',') AS employees
      FROM (SELECT a.id,
                   b.language,
                   ROW_NUMBER() OVER (PARTITION BY a.id ORDER BY b.language) AS curr,
                   ROW_NUMBER() OVER (PARTITION BY a.id ORDER BY b.language) -1 AS prev
              FROM TABLE_1 a
              JOIN TABLE_2 b ON b.id = a.langid) x
    GROUP BY x.id
    CONNECT BY prev = PRIOR curr AND x.id = PRIOR x.id
    START WITH curr = 1;
    

提交回复
热议问题