Supose I have a table with following kind of data:
Tab(id, myString)
1 A
2 B
3 C
...
I want to a SQL can return all one string for all values in Column myString. So the result I want looks like: “A, B, C”
If I don’t want to use cursor and stored procedure, is it possible sql to get such kind of result?
1 Answer