Table Oracle PLSQL Tutorial

SQL>
SQL> create table t2
  2  (  x int primary key,
  3     y varchar2(25),
  4     z date
  5  )
  6  organization index
  7  OVERFLOW;
Table created.
SQL>
SQL> drop table t2;
Table dropped.
SQL>