Trying to find some simple SQL Server PIVOT examples. Most of the examples that I have found involve counting or summing up numbers. I just want to pivot some string data. For example, I have a query returning the following.

Action1 VIEW  
Action1 EDIT  
Action2 VIEW  
Action3 VIEW  
Action3 EDIT  

I would like to use PIVOT (if even possible) to make the results like so:

Action1 VIEW EDIT  
Action2 VIEW NULL  
Action3 VIEW EDIT  

Is this even possible with the PIVOT functionality?

link|improve this question
feedback

8 Answers

up vote 51 down vote accepted

Remember that the MAX aggregate function will work on text as well as numbers. This query will only require the table to be scanned once.

SELECT Action,
       MAX( CASE data WHEN 'View' THEN data ELSE '' END ) ViewCol, 
       MAX( CASE data WHEN 'Edit' THEN data ELSE '' END ) EditCol
 FROM t
 GROUP BY Action
link|improve this answer
1  
Awesome answer. Saved me a ton of time and frustration. Wish I could give you more than just one up vote! – Eric Ness Feb 4 '09 at 16:11
What does data represent? – Silmaril89 Feb 17 '10 at 19:42
+1 Dude ... you are seriously a genius. I wish I could have known this sooner, instead of having to learn how to PIVOT! – ashes999 Feb 28 at 15:52
feedback

If you specifically want to use the SQL Server PIVOT function, then this should work, assuming your two original columns are called act and cmd. (Not that pretty to look at though.)

SELECT act AS 'Action', [View] as 'View', [Edit] as 'Edit'
FROM (
    SELECT act, cmd FROM data
) AS src
PIVOT (
    MAX(cmd) FOR cmd IN ([View], [Edit])
) AS pvt
link|improve this answer
feedback

Check out Row To Column (PIVOT) and Column To Row (UNPIVOT)

link|improve this answer
feedback

You can see this link if the number of distinct items is unknown, meaning no of columns after pivoting is dynamic.

SQL Server Pivot: Converting Rows to Columns with Dynamic Query

link|improve this answer
feedback

Here is a great discussion on pivots: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=6216

They discuss using this stored procedure to create the pivot. I've used it several times and it works great.

link|improve this answer
feedback

Well, for your sample and any with a limited number of unique columns, this should do it.

select 
    distinct a,
    (select distinct t2.b  from t t2  where t1.a=t2.a and t2.b='VIEW'),
    (select distinct t2.b from t t2  where t1.a=t2.a and t2.b='EDIT')
from t t1
link|improve this answer
feedback

From http://blog.sqlauthority.com/2008/06/07/sql-server-pivot-and-unpivot-table-examples/:

SELECT CUST, PRODUCT, QTY
FROM Product) up
PIVOT
( SUM(QTY) FOR PRODUCT IN (VEG, SODA, MILK, BEER, CHIPS)) AS pvt) p
UNPIVOT
(QTY FOR PRODUCT IN (VEG, SODA, MILK, BEER, CHIPS)
) AS Unpvt
GO
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.