In my SQL database, I have a one-to-many relationship, something like this:
Teacher Student John Alex John Mike John Sean Bob Jack Gary George Gary Paul
I'd like to display a table listing each teacher, with their students as a comma-delimited list, like this:
Teacher Students John Alex, Mike, Sean Bob Jack Gary George, Paul
This question describes how to do this on the SQL Server end, but is there a way to do this on the SSRS side of things?