Puoi facilmente dividere il YP
stringa usando LEFT()
, RIGHT()
, SUBSTRING()
, ecc. Il mio suggerimento sarebbe come stai gestendo il tuo UNPIVOT
. Sembra che tu abbia molte colonne da UNPIVOT
quindi il mio suggerimento potrebbe essere quello di implementare SQL dinamico per eseguire questa query. Lo faresti in questo modo:
declare @colsUnpivot varchar(max),
@query AS NVARCHAR(MAX),
@cols varchar(max)
select @colsUnpivot = stuff((select ','
+quotename(replace(C.name, 'Qty', ''))
from sys.columns as C
where C.object_id = object_id('yourtable') and
C.name like 'Qty%'
for xml path('')), 1, 1, '')
select @cols = stuff((select ','
+quotename(C.name) + ' as ' + replace(C.name, 'Qty', '')
from sys.columns as C
where C.object_id = object_id('yourtable') and
C.name like 'Qty%'
for xml path('')), 1, 1, '')
set @query
= 'select rowid,
left(YP, 1) YP,
cast(right(YP, len(YP) - 1) as int) period,
Val
from
(
select rowid, ' + @cols + '
from yourtable
) x1
unpivot
(
val for YP IN (' + @colsUnpivot + ')
) u'
exec(@query)