cancel
Showing results for 
Search instead for 
Did you mean: 

Split string in Hana without using user defined functions ?

former_member565459
Participant
0 Kudos

Is it possiible to split a comma separated string in Hana into rows without using a user defined function.

Something like this from oracle :

 SELECT DISTINCT REGEXP_SUBSTR ('23,34,45,56','[^,]+',1,LEVEL) as "token"
FROM   DUAL
CONNECT BY REGEXP_SUBSTR ('23,34,45,56','[^,]+',1,LEVEL) IS NOT NULL
order by 1

Accepted Solutions (1)

Accepted Solutions (1)

KonradZaleski
Active Contributor
0 Kudos

Answers (0)