vote up 1 vote down star

I have the following data

alt text

How do I transform it (with SQL Server 2005) into the following format?

alt text

I have a example solution that I came up with but it seems a little clunky. It smells perhaps?

DECLARE @ProductLanguage TABLE
(
    [PRODUCT_ID] int
    , [LANGUAGE] varchar(50)
)

INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'Czech')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'English')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52035,'German')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'Danish')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'Spanish')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (54001,'English')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Finnish')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Greek')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (70501,'Hungarian')
INSERT INTO @ProductLanguage ([PRODUCT_ID],[LANGUAGE]) VALUES (52044,'Hebrew')

SELECT
    PRODUCT_ID
    ,MAX(CASE WHEN [ROW_ID]=1 THEN LANGUAGE ELSE NULL END) As LANG_1
    ,MAX(CASE WHEN [ROW_ID]=2 THEN LANGUAGE ELSE NULL END) As LANG_2
    ,MAX(CASE WHEN [ROW_ID]=3 THEN LANGUAGE ELSE NULL END) As LANG_3
FROM
    (SELECT
        ROW_NUMBER() OVER (PARTITION BY [PRODUCT_ID] ORDER BY [PRODUCT_ID] ASC) AS [ROW_ID]
        , [PRODUCT_ID]
        , [LANGUAGE]
    FROM
        @ProductLanguage) AS Temp
GROUP BY
    [PRODUCT_ID]

The interesting bit is I do not care about the specific Languages displayed in each LANG_* column. Other questions posted here seem to all refer to knowning the pivoted columns by name. But I do not want to name the columns by the languages found.

NOTE: I know I mention the word "pivot" but the best solution for this problem may not involve the PIVOT clause. I just used that word as my question seemed to suggest pivotting data. Maybe a CTE would help with the solution, I do not know. I just know I am not happy about the example solution above.

flag

52% accept rate

3 Answers

vote up 1 vote down

You can use the PIVOT() function

SELECT    P.PRODUCT_ID,
          P.Czech,
          P.Other languages
FROM      TABLE AS T
PIVOT     (
              AGGREGATE(LANGUAGE) FOR LANGUAGE IN ([Czech],  ...)
          ) AS P

If you don't name the columns explicitly you are forced into doing tricks as far as I know...

Untested (obviously). See: MSDN

link|flag
This looks like it pivots on specific language. I want LANG_1, LANG_2, LANG_3. Which column a language falls under is irrelevant. – BlackMael Dec 19 '08 at 3:10
vote up 0 vote down

Here's an idea... Use the Pivot Keyword... available in sql2005

Pivot and UnPivot

Then after you have this working, outputting the column names as data values, embed this entire sql statemnt as the subquery inside an outer Select statement, where you Alias the column names as "Language1", "Language2" etc...

Select Z.Arabic as Language1, Z.Botwanese as Language2, etc.
From  (Inner Pivot Query Here ) Z
link|flag
Sorry, but I am having difficulty understand how to use PIVOT to get those columns as the columns are not fixed to a particular Lanaguage in this case. – BlackMael Dec 19 '08 at 3:07
vote up -4 vote down

I don't know of a query that can do this, but this goes against the grain of SQL, although there probably is one. This looks more like a job for a report, with logic written in a traditional programming language. If I had to generate this, I'd do a simple query ordered by product, then iterate of the results and assemble the results, and export to excel, or html, or whatever is required.

This doesn't directly answer the question, but it may help get what you need.

link|flag

Your Answer

Get an OpenID
or

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