select str_split('Jack,Andy', ',') from dual;
select column_value name from table(str_split('Jack,Andy', ','));

Oracle将字符串转换为行_Oracle