Everything That Has a Beginning Has an End
The Weird and The Wonderful
2
Posts
2
Posters
0
Views
1
Watching
-
SET @value = SUBSTRING(@sText, 1, CHARINDEX(@sDelim, @sText) -1)
BEGIN
INSERT @retArray (idx, value)
VALUES (@idx, @value)
END...but why have a
BEGIN
in the first place? :doh:Driven to the ARMs by x86.
-
SET @value = SUBSTRING(@sText, 1, CHARINDEX(@sDelim, @sText) -1)
BEGIN
INSERT @retArray (idx, value)
VALUES (@idx, @value)
END...but why have a
BEGIN
in the first place? :doh:Driven to the ARMs by x86.