SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Creating a Dynamic Crosstab Query

By Cade Bryant, 2003/09/26

Total article views: 707 | Views in the last 30 days: 95

Crosstab queries (also called "pivot tables") in which you know beforehand the number of column values to aggregate by, can easily be performed in T-SQL using CASE statements wrapped in the SUM function.  Where things get tricky, however, is when you don't know how many aggregation values exist, and you are required to write a query that will dynamically generate as many aggregation columns as there are aggregation values in the database.

The script I wrote below generates a dynamic crosstab report.  It performs quite efficiently, without needing to resort to cursors or temp tables, by generating and executing dynamic SQL.  The only catch is that the code generated cannot exceed 8000 characters.  (If you need more space for your generated code, you could re-write this script so that it inserts the generated code into a table rather than into a variable).

By Cade Bryant, 2003/09/26

Total article views: 707 | Views in the last 30 days: 95
Your response
 
 
Related tags

Miscellaneous    
T-SQL Aids    
 
Like this? Try these...

Column_Gitter

By RickInMesa | Category: Miscellaneous
| 142 reads
Already registered?  

Free registration required

To read the rest of this article, and access thousands of other articles, we ask you to register on the site and subscribe to our newsletters.

Register

E-mail address:
Password:
Password (confirm):

  

Subscriptions

We ask you to register on the site and subscribe to our newsletters. Subscribing to our newsletters gets you:

  • ALL of our content (thousands of articles, scripts, and forum postings)
  • A daily newsletter (example)
  • A weekly news round up (example)
  • The opportunity to ask and answer questions in our forums
  • A daily Question of the Day to test and help you increase your knowledge of SQL Server.

We ask that you give the newsletter a try for a week. Over 200,000 SQL Server Professionals a day find it entertaining and useful. If not, you are welcome to unsubscribe at anytime.

Steve Jones
Editor, SQLServerCentral.com