SELECT * would result in:
course_id + group
-----------------
1 + SE123
1 + BA134
2 + SE213
3 + SE223
3 + BA344
4 + SE222
I would like it be like this:
course_id + group
---------------------
1 + SE123/BA134
2 + SE213
3 + SE223/BA344
4 + SE222
How can I do that?

group. – JNK♦ Mar 12 '12 at 13:55