I am looking for a query similar to the below one.
SELECT ROWNUM rnum,COLUMN_VALUE as dl
FROM TABLE(CAST(varc('REGULAR','AD','PR') is varray(3) of varchar2(100)))
Output :
REGULAR
AD
PR
PS: Type creation is not allowed in our oracle 11g by DBA. Using union is one option. But we are looking for list of array elements in the select query
Any suggestions please!