CREATE TYPE nom_type AS OBJECT (
nom_attribut1 type_attribut1,
...
);
/
CREATE TABLE t OF nom_type (
)
CREATE TABLE t (
nom_attribut nom_type,