How to use CHARINDEX or PATINDEX to format the data Separately.
Eg. Declare @a Varchar(100)
SET @a= 'CityName,StateName,CountryName'
SELECT STUFF(@a,PATINDEX('%,%',@a),LEN(@a),'')
Result: 'CityName'
But I need the result as
'CityName'
'StateName'
'CountryName'
Please advice to fetch the data like above....
↧
Format Data using CHARINDEX or PATINDEX
↧