Let's say my select statement in t-sql returns
John Smith | Chicago | a
John Smith | Chicago | f
John Smith | Chicago | j
Josh Dude | Houston | p
Josh Dude | Houston | s
And I want it to return
John Smith | Chicago | a, f, j
Josh Dude | Houston | p, s
How would I do that?