Answers for "SQL Server Splitting a string column into multiple rows, while repeating ID column"

SQL
0

SQL Server Splitting a string column into multiple rows, while repeating ID column

INSERT INTO TempSubProduct (ID, SubName)
SELECT ProductID, SPL.value
FROM Production.Product  AS PP
CROSS APPLY STRING_SPLIT(PP.Name,' ') AS SPL;
Posted by: Guest on November-11-2021

Code answers related to "SQL Server Splitting a string column into multiple rows, while repeating ID column"

Code answers related to "SQL"

Browse Popular Code Answers by Language