Hey guys, I'm stumped right now.... I'm trying to translate a table for display reasons.
My original table is as follows:
EDIT: for better understanding
Ok guys, So I only have 1 table, TableA which is below
ID CourseNumber Outcome 1 1 a 2 2 a 3 2 b 4 3 c 5 4 b 6 1 d
And I'm trying to translate TableA into a temporary table that will look like this:
CourseNumber a b c d 1 X X 2 X X 3 X 4 X
An "X" represents the existence of that record from TableA... So since I have a record 1a, an "X" is marked in the 'a' column.
How would I go about producing this table?
Is there a query that would display the result set in the fashion I would like? Or will I have to make an array of some sort and fill it? I'm stumped!
Thanks,
cbende2