Search Results

1
vote
4answers
72 views

How to use a view name stored in a field for an sql query ?

I have a table with a view_name field (varchar(256)) and I would like to use that field in an sql query. Example : TABLE university_members id | type | view_name | c …
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 …