shlogg · Early preview
Judy @esproc_spl

Splitting Comma Separated Strings In MS SQL With SPL

Split MS SQL comma-separated string into 5 fields using SPL: A1) Query DB, A2) Split items field, A3) Create new table with Srllno1-Srllno5 fields.

A field in a table of the MS SQL database is a comma separated string with an indefinite number of strings.

Now we need to split this field into 5 new fields, named Srllno1 to Srllno5, with values of the 1st to 4th string and the 5th to last string after splitting the original field. Fill in null when the number of strings is insufficient.

SPL code:

A1: Query the database through JDBC and retrieve the items field.
A2: Split the items field into multiple strings using commas.
A3: Create a new two-dimensional table, get the first to fourth parts
 of the A2 current member, and name them as...