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 );

 


posted @ 2017-12-05 15:51  朴pu客  阅读(205)  评论(0编辑  收藏  举报