Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7493409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T16:56:45+00:00 2026-05-29T16:56:45+00:00

I’ve seen many rows-to-columns threads here but can’t find exactly what I’m looking for.

  • 0

I’ve seen many rows-to-columns threads here but can’t find exactly what I’m looking for.

How do you convert the following table:

ID    Foo    Bar
1     A      F
2     B      G
3     C      H
4     D      I
5     E      J

Into this:

ID    1    2    3    4    5
Foo   A    B    C    D    E
Bar   F    G    H    I    J

Thanks! I am using SQL Server 2005 by the way.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T16:56:46+00:00Added an answer on May 29, 2026 at 4:56 pm

    Here is an answer. As I alluded to in my comment, this only works in the dimensions that you’re working with are known/fixed. First, the sample data:

    declare @Table table (ID int not null,Foo char(1) not null,Bar char(1) not null)
    insert into @Table (ID,Foo,Bar)
    select 1,'A','F' union all
    select 2,'B','G' union all
    select 3,'C','H' union all
    select 4,'D','I' union all
    select 5,'E','J'
    
    select * from @Table --As per your original data table
    
    ;with Rot1 as (
        select
            *
        from
            @Table unpivot (Value for Col in (Foo,Bar)) t
    )
    select * from Rot1 -- See below
    
    ;with Rot1 as (
        select
            *
        from
            @Table unpivot (Value for Col in (Foo,Bar)) t
    ), Rot2 as (
        select
            *
        from Rot1 pivot (MAX(Value) for ID in ([1],[2],[3],[4],[5])) t
    )
    select * from Rot2 -- As per your required result
    

    The output when merely selecting from Rot1 is:

    ID  Value   Col
    1   A   Foo
    1   F   Bar
    2   B   Foo
    2   G   Bar
    3   C   Foo
    3   H   Bar
    4   D   Foo
    4   I   Bar
    5   E   Foo
    5   J   Bar
    

    So, we can construct this query, so long as we know all of the cross-referencing identifiers, e.g. Foo, Bar, 1, 2, 3, 4, and 5. In most cases of wanting to do this kind of transform, you don’t know all of these values, and so SQL isn’t the way to achieve the transform – use whatever tool is consuming the original results to achieve this kind of reformatting.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to count how many characters a certain string has in PHP, but
I have a jquery bug and I've been looking for hours now, I can't
Seemingly simple, but I cannot find anything relevant on the web. What is the
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I need to clean up various Word 'smart' characters in user input, including but
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.