I have a table like this:
Section TestID Score
Section1 1 50
Section2 1 32
Section3 1 22
Section1 2 22
Section2 2 17
Section3 2 42
I'm looking to produce a table with each section and it's scores against all testIDs (up to a maximum of 3 scores). Is it possible to use a group by condition to produce a table similar to this:
Section Score1 Score2
Section1 50 22
Section2 32 17
Section3 22 42