↧
Answer by Cyborg
Try this.... DECLARE @t VARCHAR(255), @splitAt int set @t = 'this is a text ' set @splitAt = 4 ;with cte as ( Select CONVERT(VARCHAR,LEFT(@t,@splitAt)) SplitedString,STUFF(@t,1,@splitAt,'') String,...
View ArticleAnswer by Cyborg
I hope this will solve your problem DECLARE @t table( ID int identity, Data varchar(50), SplitAt int) Insert into @t Select 'this is a text', 4 union all Select 'this is again a', 5; WITH CTE AS (...
View Article