Insert rows into supertables
No special considerations exist when you insert a row
into a supertable. An INSERT statement applies only to the table that
is specified in the statement. For example, the following statement
inserts values into the supertable but does not insert values into
any subtables:
INSERT INTO person
VALUES (
'Poole, John',
ROW('402 Saphire St.', 'Elmondo', 'CA', '69055'),
345605900
);