Object Oriented Database Oracle PLSQL

SQL> 
  2
SQL> create or replace
  2  type address as object(
  3   id number,
  4   street varchar2(100),
  5   state varchar2(2),
  6   zipcode varchar(11)
  7  )
  8  /
Type created.
SQL>
SQL> create table address_table of address
  2  /
Table created.
SQL>
SQL>
SQL>
SQL> insert into address_table values ( address( 2, '123 Main Street', 'NJ', '07728' ) )
  2  /
1 row created.
SQL>
SQL> select * from address_table;
        ID
----------
STREET
--------------------------------------------------------------------------------
ST ZIPCODE
-- -----------
         2
123 Main Street
NJ 07728
SQL> drop table address_table;
Table dropped.
SQL>