我很难使用存储过程作为绑定在asp.net中制作XtraCharts线图(XY图)。
我想通过X
,R250
,R500
,R1000
行来设置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
是否有可能的查询来实现?非常感谢。.
答案 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)
您只需要简单的UNPIVOT
(helpful 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;