There are probably several ways to do this.One way is to combine the Parsing CSV Values Into Multiple Rows article with the Using COALESCE to Build Comma-Delimited String article.declare @csv varchar(100), @sep char(1), @result varchar(100)select @csv = 'Hello How Are you', @sep = ' 'select @result = coalesce(@result + ' ', '') + elementfrom ( select top 100 percent nullif(substring(@sep+@csv+@sep,n,charindex(@sep,@sep+@csv+@sep,n)-n),'') as element from dbo.numbers where n<=datalength(@sep+@csv+@sep) and n-datalength(@sep)>0 and substring(@sep+@csv+@sep,n-datalength(@sep),datalength(@sep))=@sep and charindex(@sep,@sep+@csv+@sep,n)-n>0 order by n desc ) aselect @result
Jay White{0}