11
Answers

How to split comma separated string values into columns ?

Guest User

Guest User

2y
961
1

SELECT id, Name, value Name FROM tblRegister CROSS APPLY STRING_SPLIT(Name, ',');

I Got this Error

Msg 208, Level 16, State 1, Line 1
Invalid object name 'STRING_SPLIT'.
 

Answers (11)