Search notes:

Oracle: CREATE TABLE

create table tq84_tab
(
   col_1 number,
   col_2 varchar2(10)

)
pctfree 20
storage (
   minextents     10
   maxextents    100
);

See also

create table … as select …
Oracle SQL noun: TABLE

Index