Answers for "oracle split string"

SQL
1

oracle split string

-- Splits a comma separated string into rows
SELECT regexp_substr('SARAH,JOE,PIMPO,LOUIS', '[^,]+', 1, LEVEL)
FROM DUAL
CONNECT BY regexp_substr('SARAH,JOE,PIMPO,LOUIS', '[^,]+', 1, LEVEL) IS NOT NULL;
Posted by: Guest on January-27-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language