How do you unflatten a delimited string column into separate rows? I couldn't find a good simple example in stackoverflow. Do I need to use the PIVOT function?
My example:
Table - Toys
ID - A01
SendNumber - '200, 203, 205’
Owner - Josh
Desired end Table
ID SendNumber Owner
A01 200 Josh
A01 203 Josh
A01 205 Josh
Thanks