Hi ,
I have an array that need to be split into table columns.
Ex:
test_array('{"( 1,2,3,4,5)","(1 0,20,30,40,50)" }')
test_table
col1 col2 col3 col4 col5
1 2 3 4 5
10 20 30 40 50
I have an array that need to be split into table columns.
Ex:
test_array('{"( 1,2,3,4,5)","(1 0,20,30,40,50)" }')
test_table
col1 col2 col3 col4 col5
1 2 3 4 5
10 20 30 40 50
Comment