I have a table of the key-value structure with the following fields:
Title
PageNo
LineNo
Key
Value
Units
I have the following pivot query that works great:
SELECT * FROM
(SELECT Title, [Key],IIF(NOT [Units] IS NULL,[Value] + ' ' +[Units],
[Value]) AS ValueUnits FROM Table1 WHERE [Key] LIKE 'Field_%') as Data
PIVOT(
MAX([ValueUnits])
FOR [Key] IN([Field_1],[Field_2],[Field_3])) As Piv
ORDER BY Title
I get results as:
Title Field_1 Field_2 Field_3
-------------------------------------
How do I need to change my pivot query in order to get something like this:
Title Field_1 (Units) Field_2(Units) Field_3(Units)
----------------------------------------------------------
and/or something like this:
Title Field_1 Units Field_2 Units Field_3 Units
in my resultset?
I tried:
SELECT * FROM
(SELECT Title, [Key] + '(' + [Units] + ')' As KeyAndUnits,[Value]
FROM Table1 WHERE [Key] LIKE 'Field_%') as Data
PIVOT(
MAX([Value])
FOR [Key] IN([Field_1],[Field_2],[Field_3])) As Piv
But that gives me an error "Invalid column name [Key]"
I also tried:
SELECT * FROM
(SELECT Title, [Key], [Key] + '(' + [Units] + ')' As KeyAndUnits,[Value]
FROM Table1 WHERE [Key] LIKE 'Field_%') as Data
PIVOT(
MAX([Value])
FOR [Key] IN([Field_1],[Field_2],[Field_3])) As Piv
But that messes up my result set
Can anyone point me in the right direction?
Edit:
Sample data: ________________________________ Title Key Value Units ------------------------------------- Title1 Field_1 4000 lbs Title1 Field_2 150 pages Title1 Field_3 200 ml Title2 Field_2 300 pages Title3 Field_1 350 lbs Title3 Field_3 55 ml
Sample Output:
Title Field_1 Units Field_2 Units Field3 Units
-------------------------------------------------------------
Title1 4000 lbs 150 pages 200 ml
Title2 300 pages
Title3 350 lbs 55 ml
and
Title Field_1 (lbs) Field_2 (pages) Field3 (ml)
-------------------------------------------------------------
Title1 4000 150 200
Title2 300
Title3 350 55
Second one probably might not work if the units for the same column are not always the same
I actually found a rather simple solution - I concatenate Value and Unit with "/" and then I split on the "/" in the select list using CHARINDEX.