Objekttypen I - Objekte
Elementarer Objekttyp - Skalar
- create type t_complex as (real number, imag number);
- create table x ( id number, comp t_complex);
Schachtelung beliebig möglich
Zugriff über “.” Notation
- select c.comp.real from x c;
- select c.len from x c;