如何在SQL Server 2008R2中将行名更改为列名

时间:2018-10-22 09:40:54

标签: sql asp.net sql-server xtrareport

我很难使用存储过程作为绑定在asp.net中制作XtraCharts线图(XY图)。

我想通过XR250R500R1000行来设置R2000的值 和Y值是上面每行中已经存储的数据。

我有一个这样的原始表:

========================================================
No | Sequence No | ItemId | R250 | R500 | R1000 | R2000
========================================================
1    001           118       23     13     14      24

我想将其显示为

========================================================
No | Sequence No | ItemID | Value | NameX
========================================================
1    001            118      23     R250
1    001            118      13     R500
1    001            118      14     R1000
1    001            118      24     R2000

是否有可能的查询来实现?非常感谢。.

2 个答案:

答案 0 :(得分:2)

您可以专门使用apply

select t.No, t.[Sequence No], t.ItemID, tt.*
from table t cross apply
     ( values ([R250], 'R250'),
              ([R500], 'R500'),
              ([R1000],'R1000'),
              ([R2000],'R2000')
     ) tt (Value, NameX);

答案 1 :(得分:1)

您只需要简单的UNPIVOThelpful article)。

尝试以下代码:

declare @tbl table (No int, SequenceNo varchar(3), ItemId int, R250 int, R500 int, R1000 int, R2000 int);
insert into @tbl values (1,'001', 118, 23, 13, 14, 24);

select * from (
    select * from @tbl
) p unpivot (
    [Value] for NameX in (R250, R500, R1000, R2000)
) as up;