Here's the table and what if I want to aggregate the courseID for each student. Can I do that in SQL?
StudentCourse
-------------
StudentID  CourseID
1          101
1          102
1          103
2          103
What I want:
StudentCourse
-------------
StudentID  CourseID
1          101,102,103
2          103
 
    