I have a query that pulls product attributes from a temp table and marries the values with data in a table. My intent is to take each of the 13 rows and create a single row with the values from @productAttributes (attributeLabel in the query results) becoming the column name and the values from ext40102.LONGNAME populating the corresponding field.
The first column in the row should be ext00103.PT_UD_Key followed by the 13 columns listed above. This will need to run for 2500+ products that all have 13 attributes to list.
Here is a screen shot of the current query output
Thanks in advance.
Jason
declare @productAttributes table (PT_UD_Number tinyint, attributeLabel VarChar(50))
INSERT INTO @productAttributes (PT_UD_Number, attributeLabel)
SELECT 1,'Type'
UNION ALL
SELECT 2, 'Brand'
UNION ALL
SELECT 3, 'Product Line'
UNION ALL
SELECT 4, 'Product'
UNION ALL
SELECT 5, 'Quantity'
UNION ALL
SELECT 6, 'Length'
UNION ALL
SELECT 7, 'Ring'
UNION ALL
SELECT 8, 'Country of Origin'
UNION ALL
SELECT 9, 'Wrapper'
UNION ALL
SELECT 10, 'Binder'
UNION ALL
SELECT 11, 'Filler'
UNION ALL
SELECT 12, 'Strength'
UNION ALL
SELECT 14, 'Class'
select Top 13
--ext00103.PT_Window_ID
ext00103.PT_UD_Key
, ext40102.LONGNAME
--, ext00103.PT_UD_Number
, (SELECT attributeLabel from @productAttributes WHERE PT_UD_Number = ext00103.PT_UD_Number) as attributeLabel
from mail..ext00103 ext00103, mail..ext40102 ext40102
where
--ext00103.PT_UD_KEY = 'CAS898'
ext00103.PT_Window_ID = 'ECOMM_ATTRIB'
AND ext40102.PT_Window_ID = 'ECOMM_ATTRIB'
AND ext00103.PT_UD_Number = ext40102.Field_Number
AND ext00103.TOTAL = ext40102.LNITMSEQ
ORDER BY ext00103.PT_UD_KEY,ext00103.PT_UD_Number
The first column in the row should be ext00103.PT_UD_Key followed by the 13 columns listed above. This will need to run for 2500+ products that all have 13 attributes to list.
Here is a screen shot of the current query output

Thanks in advance.
Jason
declare @productAttributes table (PT_UD_Number tinyint, attributeLabel VarChar(50))
INSERT INTO @productAttributes (PT_UD_Number, attributeLabel)
SELECT 1,'Type'
UNION ALL
SELECT 2, 'Brand'
UNION ALL
SELECT 3, 'Product Line'
UNION ALL
SELECT 4, 'Product'
UNION ALL
SELECT 5, 'Quantity'
UNION ALL
SELECT 6, 'Length'
UNION ALL
SELECT 7, 'Ring'
UNION ALL
SELECT 8, 'Country of Origin'
UNION ALL
SELECT 9, 'Wrapper'
UNION ALL
SELECT 10, 'Binder'
UNION ALL
SELECT 11, 'Filler'
UNION ALL
SELECT 12, 'Strength'
UNION ALL
SELECT 14, 'Class'
select Top 13
--ext00103.PT_Window_ID
ext00103.PT_UD_Key
, ext40102.LONGNAME
--, ext00103.PT_UD_Number
, (SELECT attributeLabel from @productAttributes WHERE PT_UD_Number = ext00103.PT_UD_Number) as attributeLabel
from mail..ext00103 ext00103, mail..ext40102 ext40102
where
--ext00103.PT_UD_KEY = 'CAS898'
ext00103.PT_Window_ID = 'ECOMM_ATTRIB'
AND ext40102.PT_Window_ID = 'ECOMM_ATTRIB'
AND ext00103.PT_UD_Number = ext40102.Field_Number
AND ext00103.TOTAL = ext40102.LNITMSEQ
ORDER BY ext00103.PT_UD_KEY,ext00103.PT_UD_Number