Given: contact information. Places in the site field instead of one value with several delimiters of type | sometimes I would like to "save" this information by creating a line that completely repeats all the fields of the parent line except the "site" field, which will be different in the child lines. 
The String Split function does not work, it is from the 2016 version.
From the found there is such an option:
Declare @products varchar(200) = '1|20|3|343|44|6|8765' Declare @individual varchar(20) = null WHILE LEN(@products) > 0 BEGIN IF PATINDEX('%|%', @products) > 0 BEGIN SET @individual = SUBSTRING(@products, 0, PATINDEX('%|%', @products)) SELECT @individual SET @products = SUBSTRING(@products, LEN(@individual + '|') + 1, LEN(@products)) END ELSE BEGIN SET @individual = @products SET @products = NULL SELECT @individual END END