I wonder how can i make select statement from table which have a typed column ? Type of this column is defined as:
create or replace TYPE \"MYCOL\" as table
Try it like this:
select t."ID", tt.myid, tt.myname from "T_TABLE" t, table(t."NAME") tt;
Here is a sqlfiddle demo