我有一个表格如下
chain |branch
________|________|
a |UK
a |US
b |ISRAEL
b |UK
b |FRANCE
b |BELGIUM
c |NIGERIA
我希望以下列格式创建一个新表
chain |branch_1|branch_2|branch_3|branch_4
________|________|________|________|________|
a | UK | US |--------|--------|
b | ISRAEL| UK | FRANCE |BELGIUM |
c | NIGERIA|--------|--------|--------|
为了进一步说明,假设您可以通过(链)进行分组,其中聚合函数是标识符,以便
group_1->(element1,element2,element3,..,elementM)
group_2->(element1,element2,element3,..,elementN)
...
group_X->(element1,element2,element3,..,elementZ)
所以将创建一个新表格 R + K列,其中R是我们分组的列数(在我们的例子中是列'链'所以R = 1),K是组的最大数量(在我们的例子中,是四,对应于链' b')
我确信这一定是一个常见的问题,所以如果以前得到了回答我会道歉,但我找不到任何东西。
编辑: 这不是一个PIVOT TABLE 在这种情况下,数据透视表将是
chain |UK |US |ISRAEL |FRANCE |BELGIUM |NIGERIA |
________|________|________|________|________|________|________|
____a___|____1___|____1___|____0___|____0___|____0___|____0___|
____b___|____1___|____0___|____1___|____1___|____1___|____0___|
____c___|____0___|____0___|____0___|____0___|____0___|____1___|
谢谢!
答案 0 :(得分:2)
您可以使用条件聚合和row_number()
:
select chain,
max(case when seqnum = 1 then branch end) as branch_01,
max(case when seqnum = 2 then branch end) as branch_02,
max(case when seqnum = 3 then branch end) as branch_03,
max(case when seqnum = 4 then branch end) as branch_04
from (select t.*,
row_number() over (partition by chain order by branch) as seqnum
from table t
) t
group by chain;
注意:您的表没有指定行排序的列。 SQL表表示无序集。没有这样的列,就没有一行在其他行之前或之后的概念。所以,这个版本按分支名称排序。您可以通过更改order by
的{{1}}子句来按任意顺序订购。