我和他们的主人有一张产品表。每个所有者都在自己的行中,并拥有主要或次要的所有者类型。并非每个产品都有次要所有者。
我需要按产品分组,主要所有者在一列中,所有次要所有者在第二列中连接。如果产品有多个主要所有者,则应选择第一个,其余的则为二级所有者。如果产品没有主要所有者,那么它应该只选择第一个/任何次要所有者。
这是一个输入表:
+---------+------------+----------+
| Product | Owner Type | Owner |
+---------+------------+----------+
| a | primary | one |
| a | secondary | two |
| a | secondary | three |
| b | primary | four |
| b | secondary | five |
| c | primary | six |
| d | secondary | seven |
| e | secondary | eight |
| e | secondary | nine |
| f | primary | ten |
| f | primary | eleven |
| f | secondary | twelve |
| f | secondary | thirteen |
+---------+------------+----------+
预期结果是:
+---------+---------------+--------------------------+
| Product | Primary Owner | Secondary Owners |
+---------+---------------+--------------------------+
| a | one | two, three |
| b | four | five |
| c | six | |
| d | seven | |
| e | eight | nine |
| f | ten | eleven, twelve, thirteen |
+---------+---------------+--------------------------+
如果您发现,产品d
和e
没有主要所有者,那么它会选择第一个二级所有者,然后再次将其包含在二级所有者列中。类似于具有两个主要所有者的产品f
。
我知道如何按产品group
使用FOR XML PATH
来连接行/字段。在group
我知道如何选择Owner Type
为primary
的第一个产品。我无法弄清楚的是选择第一个主要所有者并将其从次要所有者列中排除所需的逻辑和/或如果没有主要所有者,则选择第一个次要所有者并将其从次要所有者列中排除。 / p>
我甚至不知道从哪里开始使用SQL。
有什么想法吗?
答案 0 :(得分:1)
执行此操作的一种方法是为行号分配优先级owner_type ='Primary'行。然后将第一行作为主要所有者,将group_concat
其他人作为次要所有者。
select product
,max(case when rnum=1 then owner end) as primary_owner
,group_concat(case when rnum<>1 then owner end order by rnum) as secondary_owners
from (select product,owner_type,owner,
@rn:=case when @prev_product=product then @rn+1 else 1 end as rnum,
@prev_product:=product
from tablename
cross join (select @rn:=0,@prev_product:='',@prev) r
order by product,owner_type='Primary',owner
) t
group by product
order by 1