繁体   English   中英

如何基于SQL Server中其他列中的值插入新行?

[英]How to insert new rows based on values in other columns in sql server?

我有一个如下的数据集:

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

任何帮助,将不胜感激。

我会用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

通过将表加入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' 
  )

参见演示
结果:

> 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 

下面的查询将给出预期的结果:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM