Multiple rows to one comma-separated value [duplicate]
This question already has an answer here:
I want to create a table valued function in SQL Server, which I want to return data in comma separated values.
For example table:
tbl
Now when I execute the query using the function
Func1(value)
Output that I want is:
100,200,300,400
|
Comments
Post a Comment