I have a SQLServer2008 R2 Stored Procedure that contains an algorithm for parsing out integers from a delimited string.
Here\'s an example of the SQL code that I mad
From MSSql Server 2016, there is a new keyword introduced STRING_SPLIT to do the desired operation.
SELECT STRING_SPLIT ( string , separator )
Refer https://msdn.microsoft.com/en-us/library/mt684588.aspx