Code:
create or replace type "TStrings" as table of TString
Code:
create or replace type "TString" as object
(
someString varchar2(1000),
constructor function TString return self as result
)
Code:
create table MyTestTable
(
testColumn MYSCHEMA.TSTRINGS
);
Code:
select * from MyTestTable