1
vote
T-SQL: Opposite to string concatenation - how to split string into multiple records
SELECT substring(commaSeparatedTags,0,charindex(',',commaSeparatedTags))
will give you the first tag. You can proceed similarly to get the second one and so on by combinin …
