I have a table of courses with Course_ID. Each course has multiple sessions for the academic year. These "sessions" are whats called "team learning" for medical students. Each course has different sessions and number of session held.
I would like to construct a page with a column of Course Names and each row of Course Name listing all the sessions created.
Anatomy may have as many as 12 Team Learning sessions.
Example
Course Name
Human Development------session 1------session 2------session 3------session 4
Principle of Disease---------session 1------session 2------session 3
Neuroscience----------------session 1------session 2------session 3------session 4------session 5
The session names (session 1) will be linked to another page so that all the grades given out for the different tests during a TL session are displayed.
I could easily count the Session_ID's for each Course then stick it in some kind of loop to construct each column, or get the max(count) for all courses and create the number of columns that way. I would just have empty cells in the table where no session exist for those courses.
If anybody has seen this done and can give me an example it would be mucho appreciated.