Hello,
Is there a function to split a string to different rows?
For example, t1(id, col1)values(1, 'a, b, c');
select id, string_split_to_row(col1, ',');
Return:=========1, a1, b1, c
Thanks alot!Emi