Constraints Oracle PLSQL

SQL>
SQL> create table t
  2  ( x int primary key ,
  3    y date,
  4    z clob )
  5  /
Table created.
SQL>
SQL> drop table t;
Table dropped.
SQL>