I have a Table/Query that looks like:
Student ID AP Course Grade
112233 ENGL A
112233 FREN B
456789 HIST C
456789 ENGL A
345432 SPAN C
I need it to look like:
Student ID AP Course1 Grade1 AP Course2 Grade2
112233 ENGL A FREN B
456789 HIST C ENGL A
345432 SPAN C
And so on....there might be as many as 15 courses.
I no how to go the other way with a UnionALL query, but how to I go this way?
Mike
Student ID AP Course Grade
112233 ENGL A
112233 FREN B
456789 HIST C
456789 ENGL A
345432 SPAN C
I need it to look like:
Student ID AP Course1 Grade1 AP Course2 Grade2
112233 ENGL A FREN B
456789 HIST C ENGL A
345432 SPAN C
And so on....there might be as many as 15 courses.
I no how to go the other way with a UnionALL query, but how to I go this way?
Mike