Data Type Oracle PLSQL

SQL>
SQL>
SQL>
SQL> create table t(
  2      c1 timestamp with time zone,
  3      c2 timestamp with local time zone
  4  )
  5  /
Table created.
SQL>
SQL> drop table t;
Table dropped.
SQL>