Thanks in advance.
I have a table with values like this
class_id Instructor_Name
———————————
1 Joe
2 Joe
3 Joe
1 Judy
2 Judy
2 Kevin
3 Kevin
and I want the Result Set like this using SQL statement:
id name services (I want)
———————————–
1 Joe, Judy
2 Joe, Judy, KevinC
3 Joe, Kevin
How can I get this
Thanks, Brijesh