I have a column in my table that contains a VARRAY of VARCHAR2, So I want to create a select-statement that gives me all the columns and all the objects of the VARRAY next to eachother, is there a possible way to do that?
Example:
CREATE TYPE arr AS VARRAY(5) OF VARCHAR2(10);
CREATE TABLE table1(
v1 VARCHAR2(10)
v2 VARCHAR2(20)
v3 arr);
SELECT t.v1, t.v2, ??? FROM table1 t;
Thank You!