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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:15:28+00:00 2026-05-11T16:15:28+00:00

Source table: Create Table ExamAnswers { StudentID varchar(12), QuestionID int, Answer char(1) } and

  • 0

Source table:

Create Table ExamAnswers
{
   StudentID varchar(12),
   QuestionID int,
   Answer char(1)
}

and this will be filled with

Bob 1 a
Bob 2 c
...
Bob 100 b
Chris 1 c
Chris 2 d
...
Chris 100 null

etc, for about 500 students.

Chris did not finish the exam, but the 100th question is stored as null, so it is guaranteed that each student has exactly 100 rows, but the actual answer is null or character.

If it makes any difference, answers are in {a,b,c,d,e,f}

This setup works great for the actual exam application, and marking it is trivial.

Now I have a reporting requirement, that for audit purposes, I need to produce a table that looks like this:

ID    1 2 ... 100 
Bob   a c ... b
Chris c d ....null

So I spent half a day reading about the PIVOT function, and I just don’t get it.

That has to be the most impenetrable documentation I’ve ever read.

For one thing, it requires and aggregate function — What the heck am I supposed to be aggregating here?

I figure that this is just about the simplest use of the PIVOT function that there could be, and I can’t find a decent example anywhere. HELP!

  • 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-11T16:15:28+00:00Added an answer on May 11, 2026 at 4:15 pm

    OK solved it. MAX or MIN will work on a char field.
    So:

    Create Table ExamAnswers
    {
       StudentID varchar(12),
       QuestionID int,
       Answer char(1)
    }
    

    As originally created

    And then

    SELECT StudentID, [1] as Q1,  [2] as Q2, [3] as Q3, [4] as Q4, [5] as Q5 
    FROM 
    (
    SELECT StudentID, QuestionID, Answer
    FROM dbo.ExamAnswers
    ) AS piv
    PIVOT
    (
    MAX(Answer)
     FOR QuestionID IN ([1], [2], [3], [4], [5])
    ) AS chld
    

    The confusion lays in the selection of an Aggregate where there is no logical reason to aggregate anything. I should mention that StudentID and QuestionID form a compound key, so there is only one possible Answer value for any given SID and QID pair.

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

Sidebar

Ask A Question

Stats

  • Questions 206k
  • Answers 206k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer What you described (returning a special child object) is a… May 12, 2026 at 9:11 pm
  • Editorial Team
    Editorial Team added an answer Try encodeURIComponent: 'someval=' + encodeURIComponent($("input[name=someval]").val()) Better yet, let jQuery handle… May 12, 2026 at 9:11 pm
  • Editorial Team
    Editorial Team added an answer Strictly speaking, it doesn't necessarily do anything. If a Makefile… May 12, 2026 at 9:11 pm

Related Questions

So I've got this audit table, looks like this: USE [DatabaseName] GO /****** Object:
In the following one to many CREATE TABLE source(id int, name varchar(10), PRIMARY KEY(id));
I have two tables, a destination for the update: create table dest (value int)
I tried to perform the following in order to update a psuedo-identity value at

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.