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 6046673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:16:00+00:00 2026-05-23T07:16:00+00:00

SQL Server 2005 I have the following result set: ID name prop value ————————–

  • 0

SQL Server 2005

I have the following result set:

ID  name    prop    value
--------------------------
1   one     Prop1   va1_1_1
1   one     Prop2   val_1_2
2   two     Prop1   val_2_1
2   two     Prop2   val_2_2
3   three   Prop2   val_3_2
4   four    Prop1   val_4_1
4   four    Prop2   val_4_2

How can I flatten it to get an output of

ID  name    Prop1       Prop2
---------------------------------
1   one     val_1_1     val_1_2
2   two     val_2_1     val_2_2
3   three   val_3_2     NULL
4   four    val_4_1     val_4_2

Note: The number of properties (Prop1, Prop2) is arbitrary and can be many.

  • 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-23T07:16:01+00:00Added an answer on May 23, 2026 at 7:16 am

    See MSDN: Using PIVOT and UNPIVOT.

    It has a very good example of what you are trying to do.

    This will give you the desired result.

    Select  *
    From    (
            Select  ID,name,prop,value 
            from    YourTable 
            ) P
    PIVOT ( max(value) For Prop in (Prop1,Prop2) ) as pvt
    Order By ID 
    

    Please note, you need to support arbitrary number of prop values. In that case one solution could be to build this script dynamically and execute it.

    EDIT:
    To make it complete, here is the SQL that would work for arbitrary number of prop values –

    Declare @Value as NVarChar(Max)
    Set @Value =    'Select *
                    From    (
                            Select  ID,name,prop,value 
                            from    YourTable 
                            ) P
                    PIVOT ( max(value) For Prop in ('
    
    Select @Value = @Value +  Prop + ','
    from (  Select  Distinct Prop
            From YourTable) YT
    
    Set @Value = Left(@Value, Len(@Value)-1)
    
    Set @Value = @Value + ') ) as pvt Order By ID'
    Exec(@Value)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following table and data in SQL Server 2005: create table LogEntries
SQL Server (2005/2008) Each of the below statements have the same result. Does anyone
I have a stored proc in SQL Server 2005, which looks like the following
HI, Using SQL server 2005 I have the following query: SELECT contact_id ,YEAR(date_created) AS
SQL Server 2005 I have a table containing the following: - [order_id] [index_1] 600020001
SQL Server 2005 I have 10 million rows in DB, and run a select
In SQL Server 2005 I have an id field in a table that has
I want to create a list of columns in SQL Server 2005 that have
In Sql Server 2005 when I have multiple parameters do I have the guarantee
I have a SQL Server 2005 database and I have 4 GB of text

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.