devxlogo

Creating a Crosstab

Creating a Crosstab

Question:
How can I create a crosstab in SQL Server 7.0? I’m used to Microsoft Access, where I can use columnheading and rowheading. Does this work in SQL?

Answer:
This type of processing is best reserved for your application layer, not the data layer. There is a way to do it, but it is clunky and demands that you know in advance how many columns you need to create to express you result.

Let’s say you need to do a crosstab of months. The technique rests on the CASE statement and looks like this:

 SELECT month = CASE WHEN "January" THEN 1               CASE WHEN "February" THEN 2endfrom t1

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist