Hi,
I like to create a store procedure that takes a comma delimited varchar as
parameter, and split them into an array and insert elements into a table.
For instance, if the parameter input is 1,2,3,4 , there will be 4 records
inserted into a table with respective value of 1,2, 3 and 4. How do I do it?
TIA