Hi all
I have a SQL server field which has multiple values delimited by a newline(chr(13)) character. I would like to split the field into multiple fields. How is it possible to do it ? Is there an function which would help me do this ?
E.G I have SQL Server column named Brand
Field Name Values
Brand BrandX(delimiter)BrandY(delimiter(BrandZ)
(delimiter) is a newline character Chr(13)
I want to split the above values so that I get
Brand1 BrandX
Brand2 BrandY
Brand3 BrandZ
I know there will be a maximum of 10 brands.
Please Help
regards
Chetan
I have a SQL server field which has multiple values delimited by a newline(chr(13)) character. I would like to split the field into multiple fields. How is it possible to do it ? Is there an function which would help me do this ?
E.G I have SQL Server column named Brand
Field Name Values
Brand BrandX(delimiter)BrandY(delimiter(BrandZ)
(delimiter) is a newline character Chr(13)
I want to split the above values so that I get
Brand1 BrandX
Brand2 BrandY
Brand3 BrandZ
I know there will be a maximum of 10 brands.
Please Help
regards
Chetan