I am working with a table where there are multiple rows that I need pivoted into columns. So the pivot is the perfect solution for this, and works well when all I need is one field. I am needing to return several fields based upon the pivot. Here is the pseudo code with specifics stripped out:

SELECT 
  field1,
  [1], [2], [3], [4]
FROM
  (
  SELECT 
    field1, 
    field2, 
    (ROW_NUMBER() OVER(PARTITION BY field1 ORDER BY field2)) RowID
  FROM tblname
  ) AS SourceTable
PIVOT
  (
  MAX(field2)
  FOR RowID IN ([1], [2], [3], [4])
  ) AS PivotTable;

The above syntax works brilliantly, but what do I do when I need to get additional information found in field3, field4....?

link|improve this question

80% accept rate
1  
Exactly what do you need to have? – Mitchel Sellers Jun 3 '09 at 21:14
feedback

4 Answers

up vote 7 down vote accepted

Rewrite using MAX(CASE...) and GROUP BY:

select 
  field1
, [1] = max(case when RowID = 1 then field2 end)
, [2] = max(case when RowID = 2 then field2 end)
, [3] = max(case when RowID = 3 then field2 end)
, [4] = max(case when RowID = 4 then field2 end)
from (
  select 
    field1
  , field2
  , RowID = row_number() over (partition by field1 order by field2)
  from tblname
  ) SourceTable
group by 
  field1

From there you can add in field3, field4, etc.

link|improve this answer
What I ended up doing was using CASe statements in a CTE to populate this derived table, which I joined with additional criteria. Here is the CTE: – websch01ar Jun 4 '09 at 21:27
With cteSec as ( SELECT vSec.ID, --Secretary 1 ------------------------- MAX( CASE vSec.RowID WHEN 1 THEN vSec.field1 ELSE '' END ) [SEC_OfficePhone1], MAX( CASE vSec.RowID WHEN 1 THEN vSec.field2 ELSE '' END ) [SEC_OfficeFax1], FROM ( --THIS WILL BE THE INNER QUERY (it assigns rows to secretaries) SELECT TOP 100 PERCENT field1, field2, ID (ROW_NUMBER() OVER(PARTITION BY vs.ID ORDER BY vs.ID2)) RowID FROM tblname vs ORDER BY vs.ID, ID2 ) vSec GROUP BY vSec.ID ) – websch01ar Jun 4 '09 at 21:29
So through this method I have hardcoded the number of columns I am expecting. I generally would prefer to do this dynamically, as its bound to change. But as a company, we are focusing on overhead reduction, so I do not see the need for more than four secretaries per boss... I am giving you the credit because your post led me down the road to writing the 20 case statements. This works like a charm with a sub-second response. – websch01ar Jun 4 '09 at 21:31
Glad to be of help. A text editor with column mode/rectangular edit really helps with writing the repetitive CASE statements. UltraEdit and Emacs come to mind. For a dynamic number of columns, you would need to use dynamic SQL. Here's the best place to read about that: sommarskog.se/dynamic_sql.html Also, I'm not sure the TOP 100 PERCENT ... ORDER BY trick still works reliably after SQL2K. The ROW_NUMBER() function will force the results into that order anyhow. – Peter Jun 5 '09 at 2:04
This is better than the Pivot/Unpivot approach I used to use: stackoverflow.com/questions/3241450/… Your way is easier to read/code and I believe it runs faster. – MikeTeeVee Mar 27 at 22:59
feedback

I am unsure if you are using MS SQL Server, but if you are... You may want to take a look at the CROSS APPLY functionality of the engine. Basically it will allow you to apply the results of a table-valued UDF to a result set. This would require you to put your pivot query into a table-valued result set.

http://weblogs.sqlteam.com/jeffs/archive/2007/10/18/sql-server-cross-apply.aspx

link|improve this answer
-1 Can't see relation with question – Andomar Jun 3 '09 at 22:26
The question is tagged & titled as T-SQL. That's the MS dialect.... – RolandTumble Jun 3 '09 at 23:12
feedback

wrap your sql statement with something like:

select a.segment, sum(field2), sum(field3) 
from (original select with case arguments) a
group by a.segment

It should collapse your results into one row, grouped on field1.

link|improve this answer
feedback

It is possible to pivot on multiple columns, but you need to be careful about reusing the pivot column across multiple pivots. Here is a good blog post on the subject:

http://pratchev.blogspot.com/2009/01/pivoting-on-multiple-columns.html

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.