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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:40:07+00:00 2026-06-15T08:40:07+00:00

How can I do the following please?

  • 0

How can I do the following please?

enter image description here

  • 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-15T08:40:08+00:00Added an answer on June 15, 2026 at 8:40 am

    You can use the PIVOT table operator to do transform the rows of these course’s grades into column, like so:

    SELECT  
      Course, 
      [1] AS "Grade 1", 
      [2] AS "Grade 2", 
      [3] AS "Grade 3", 
      [4] AS "Grade 4"
    FROM
    (
      SELECT 
        Course, 
        Grade, 
        ROW_NUMBER() OVER(PARTITION BY Course 
                          ORDER BY COURSE) rownum 
      FROM Grades
    ) t
    PIVOT 
    (
       MAX(Grade)
       FOR rownum IN([1], [2], [3], [4])
    ) p;
    

    SQL Fiddle Demo

    This will give you:

    COURSE    GRADE 1   GRADE 2      GRADE 3     GRADE 4
      A         15        17          (null)     (null)
      B         12      (null)        (null)     (null)
      C         10        18            0           9
    

    Note that: I used the ranking function ROW_NUMBER() with PARTITION BY Course to partition them into four grades. So that you could then group them into these four groups.

    If you need to this dynamically, in case there was unknown number of grades. You can use dynamic SQL in this case to generate the list of grades dynamically like so:

    DECLARE @cols AS NVARCHAR(MAX);
    DECLARE @query AS NVARCHAR(MAX);
    
    SELECT @cols = STUFF((SELECT distinct ',' 
                            + QUOTENAME('Grade ' 
                            + CAST(ROW_NUMBER() OVER(PARTITION BY Course 
                                                   ORDER BY Course) AS VARCHAR(10)))
                    FROM Grades
                             FOR XML PATH(''), TYPE
                          ).value('.', 'NVARCHAR(MAX)'), 1, 1, '');
    
    SELECT @query = 'SELECT Course, ' + @cols +  
                    'FROM
                     (
                       SELECT 
                         Course, 
                         Grade, 
                         ''Grade '' + CAST(ROW_NUMBER() 
                                           OVER(PARTITION BY Course 
                                    ORDER BY COURSE) AS VARCHAR(10)) rownum 
                       FROM Grades
                     ) t
                     PIVOT 
                     (
                       MAX(Grade)
                       FOR rownum IN(' + @cols + ')' +
                    ') p';
    execute(@query);
    

    Dynamic SQL Fiddle Demo

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

Sidebar

Related Questions

Can anyone help me in the following question please? Define a macro which has
Can someone please tell me how I can implement the following line of pseudo-code.
we are using framework 3.5 please let me know how can I achieve following
Can anyone please decode the following nested IIF to a CASE statement in SQL..
Can someone please explain the following How was the first JDK release unit Tested?
Can anyone please explain why the following code behaving strangely: public class UserInputTest {
Can anyone please explain to me why the following two queries yield different results?
Can you please point out what I am doing wrong in following statement? $db
Can you please list references for articles that demonstrates the following two, using LINQ
Can anyone please help me to work out how to achieve the following? I

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.