Vertica:如何按某种顺序连接值?

时间:2019-04-26 10:58:43

标签: sql concatenation vertica listagg

假设您有列

ID | A | B | C
1  | 3 | 1 | 2
2  | 5 | 9 | 1
3  | 1 | 2 | 3 

,并且您希望将列连接起来,以使最终结果看起来像

ID | ABC_value_DESC | ABC_value_DESC_colnames
1  | 3,2,1          | A,C,B
2  | 9,5,1          | B,A,C
3  | 3,2,1          | C,B,A 

要在新列ABC_value_DESC中按降序获取col值,然后在新列ABC_value_DESC_colnames中返回相应列名称。

如何在Vertica 9中将多列的值按降序串联到新列中,并按值顺序(不是名称顺序)返回列名?


Ps。我尝试过Listagg -function,但是无法执行排序这样的错误,并且尝试了Vertica的建议here时给出了错误的结果,甚至还发现了其他here的错误。

1 个答案:

答案 0 :(得分:1)

您可以使用令人讨厌的case表达式来执行此操作。对于三列来说,还不错:

select t.*,
       (gr || ',' ||
        (case when a not in (le, gr) then a
              when b not in (le, br) then b
              else c
         end) || ',' ||
        le
       ),
       ((case gr when a then 'a' when b then 'b' else 'c' end) || ',' ||
        (case when a not in (gr, le) then 'a'
              when b not in (gr, le) then 'b'
              else 'c'
         end) || ',' ||
        (case le when a then 'a' when b then 'b' else 'c' end)
       )          
from (select t.*, greatest(a, b, c) as gr, least(a, b, c) as le
      from t
     ) t;

此特定版本假定没有重复项或NULL值,尽管可以将其用于此目的。