我有一张看起来像这样的桌子
OutputTablesID Label ColumnOrder
236 text 1
236 text 2
236 text 3
. . .
. . .
. . .
236 text 25
我需要桌子看起来像这样
OutputTablesID 1>>2>>3>>4>>5>>6>>7>>8>>9>>10>>11>>12>>13>>14>>15
236>>>>>>>>>Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
我已经尝试过从现有数据透视表中使用的代码,但我不能在聚合函数中使用 Label,因为它是一个文本字符串。
这是我在数据透视表上的尝试
Create FUNCTION [dbo].[ColOrder]
(
)
RETURNS TABLE
AS
RETURN
(
SELECT OutputTablesId, Label, 1,2,3,4,5,6,7,8,9,10,11,12
from
(
SELECT OCL.Label, OCL.OutputTablesId
FROM OCL
) AS D
PIVOT
(
sum(Label)
FOR ColumnOrder IN ([1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12])
) AS P
感谢您的意见和建议!