Viewing 2 posts - 1 through 2 (of 2 total)
Great, thank you for the correction. Here is another Problem to consider
INSERT INTO @Test SELECT value FROM dbo.STRING_SPLIT('Abc, Ced, Def, ', ', ')
gives "Abc", "Ced" and "Def, "...
March 5, 2021 at 2:55 pm
#3853847
I'm having the following problem with the solution. The following call returns 'bc' as the only value, not 'Abc' as I would suppose:
DECLARE @Test table (Field NVARCHAR(255))INSERT...
March 4, 2021 at 5:06 pm
#3853428