ORACLE 创建新表

 1 -- Create table
 2 create table CM_YJRY  (CM_YJRY)
 3 (
 4   wid     INTEGER not null,
 5   username  VARCHAR2(64),
 6   password   VARCHAR2(100),
 7   tel        VARCHAR2(100)
 8 )
 9 tablespace SHIP_DATA
10 pctfree 10
11 initrans 1
12 maxtrans 255
13 storage
14 (
15 initial 64K
16 next 1M
17 minextents 1
18 maxextents unlimited
19 );


原文地址:https://www.cnblogs.com/123456puke/p/7987412.html