I currently do not have access to a server to test this out on, but how would I go about doing something like the following

UNPIVOT (X for XY IN (
SELECT column_name AS [XY]
    FROM Information_schema.Columns
    WHERE Table_name = XYZ AND column_name LIKE '[0-9][0-9][0-9][0-9]'
)) AS unpivotedData

i.e. is it possible to dynamically populate a list of columns to unpivot rather than statically declare them

link|improve this question

20% accept rate
feedback

1 Answer

You would need to use dynamic sql to do so. Refer to the following SO question: T-SQL Pivot? Possibility of creating table columns from row values

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.