我有一个如下的数据集:
Id A14_Comment A15_Comment A16_Comment
1 Comment1 null null
2 Comment2 Comment3 Comment4
3 null Comment5 Comment6
4 null null Comment7
我需要做的是获得以下输出:
Id A14_Comment A15_Comment A16_Comment Code
1 Comment1 null null A14
2 Comment2 Comment3 Comment4 A14
2 Comment2 Comment3 Comment4 A15
2 Comment2 Comment3 Comment4 A16
3 null Comment5 Comment6 A15
3 null Comment5 Comment6 A16
4 null null Comment7 A16
可以看到,我的目的是添加一个Code
列并通过标记代码来复制行。下面的查询为我提供了需要为每行添加具有不同代码的行的次数,但是无法找到一种有效的方法来完成其余的工作。
select Id, (
select count(*)
from (values (T.A14_Comment), (T.A15_Comment), (T.A16_Comment)) as v(col)
where v.col is not null and v.col <> ''
) from #Comments as T
任何帮助将不胜感激。
答案 0 :(得分:2)
我会使用apply
:
select c.*, c.code
from #Comments c cross apply
(select c.code
from (values (c.A14_Comment, 'A14'), (c.A15_Comment, 'A15'), (c.A16_Comment, 'A16')
) v(col, code)
where col is not null
) c;
实际上不需要子查询。您可能会发现更简单:
select c.*, v.code
from #Comments c cross apply
(values (c.A14_Comment, 'A14'), (c.A15_Comment, 'A15'), (c.A16_Comment, 'A16')
) v(col, code)
where v.col is not null
答案 1 :(得分:1)
将表格与CTE连接起来:
with
codes as (
select 'A14' code
union all
select 'A15'
union all
select 'A16'
),
idcodes as (
select comments.id, codes.code
from comments cross join codes
)
select *
from comments c inner join idcodes i
on
c.id = i.id
and (
c.A14_Comment is not null and i.code = 'A14'
or
c.A15_Comment is not null and i.code = 'A15'
or
c.A16_Comment is not null and i.code = 'A16'
)
请参见demo。
结果:
> Id | A14_Comment | A15_Comment | A16_Comment | code
> -: | :---------- | :---------- | :---------- | :---
> 1 | Comment1 | null | null | A14
> 2 | Comment2 | Comment3 | Comment4 | A14
> 2 | Comment2 | Comment3 | Comment4 | A15
> 2 | Comment2 | Comment3 | Comment4 | A16
> 3 | null | Comment5 | Comment6 | A15
> 3 | null | Comment5 | Comment6 | A16
> 4 | null | null | Comment7 | A16
答案 2 :(得分:0)
以下查询将给出预期的结果:-
select * From (
select *,'A14' Code from #Comments where A14_Comment is not null union all
select *,'A15' Code from #Comments where A15_Comment is not null union all
select *,'A16' Code from #Comments where A16_Comment is not null) as xData order by ID,Code
ID A14_Comment A15_Comment A16_Comment Code
1 Comment1 NULL NULL A14
2 Comment2 Comment3 Comment4 A14
2 Comment2 Comment3 Comment4 A15
2 Comment2 Comment3 Comment4 A16
3 NULL Comment5 Comment6 A15
3 NULL Comment5 Comment6 A16
4 NULL NULL Comment7 A16