我正在努力寻找一种在redshift中用DISTINCT进行listagg的好方法。

我要做的就是列出产品组合,但是每一行都应该返回不同产品的列表。

示例

所需的输出:

bulb, light
bulb, light, fan

代替:
bulb, bulb, light
bulb, bulb, light, fan

下面是我的SQL:
select
    tit.listagg
from (
    SELECT
        username,
        listagg(node_name, ',')
        WITHIN GROUP (ORDER BY node_name asc)
    FROM table
    Where node_type not like '%bla bla%'
    GROUP BY username
) as tit
group by listagg;

最佳答案

您可以枚举行,然后选择第一个:

select username,
       listagg(case when seqnum = 1 then node_name end, ',') within group (order by node_name asc)
from (select t.*,
             row_number() over (partition by username, node_name order by node_name) as seqnum
      from table t
      where node_type not like '%bla bla%'
     ) t
group by username;

这使用了listagg()忽略NULL值的功能。

关于sql - 在redshift中具有DISTINCT的listagg,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44969657/

10-12 07:40