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

  • Home
  • SEARCH
  • 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 8077657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:32:18+00:00 2026-06-05T15:32:18+00:00

I have a table called ‘MyTable’ that looks like: ID | Item | Type

  • 0

I have a table called ‘MyTable’ that looks like:

ID | Item | Type | Value
1  | 100  | 60   | 37
2  | 100  | 72   | 24
3  | 200  | 60   | 18
4  | 300  | 60   | 43
5  | 300  | 72   | 76

And I would like to put together an MS SQL query to obtain the following:

Item | Type_60 | Type_72
100  | 37      | 24
200  | 18      | NULL
300  | 43      | 76

most probably I am not allowed to use PIVOT (that anyway I did not understand how to use for this purpose!).

So far I could only come out with the following:

select Item,
    CASE Type WHEN 60 THEN Value END as 'Type_60',
    CASE Type WHEN 72 THEN Value END as 'Type_72'
from MyTable

but this gives me the following:

Item | Type_60 | Type_72
100  | 37      | NULL
100  | NULL    | 24
200  | 18      | NULL
300  | 43      | NULL
300  | NULL    | 76

Can anyone hlep me?

  • 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-06-05T15:32:21+00:00Added an answer on June 5, 2026 at 3:32 pm

    You’re almost there, just add group by Item at the end, and wrap the case in an aggregate:

    select Item,
        max(CASE Type WHEN 60 THEN Value END) as 'Type_60',
        max(CASE Type WHEN 72 THEN Value END) as 'Type_72'
    from MyTable
    group by Item
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have table called table1 and it looks like the below record type tran_ref_number
I have a table called reports it looks like: user_id | report_post 1 2
I have table called Data_Details and the data looks like: DateTimeClosed Datesub TimeSub 6/20/2011
hi i have table called products with columns product_id prodcut_name prodcut_price( values like 1200,2000,3000,100)
I have a table called Bowzer which has a column called Type . When
I have table called Direccion other called Cliente each one defined like this public
I have a table called USERS that has a foreign key to the table
i have table called type which contains data family,individual i want in some pages
In my db I a have table called users. In that table I have
I have a table called Person that contain a field called PersonAge. I need

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.