创建表:

create table 表名

(

  字段1  varchar2(32) not null primary key,

  字段2  date not null

) tablespace 表空间名 事务槽 个数;

comment on table 表名 is 备注的中文表名;

comment on column 表名.字段1 is 备注的中文字段1;

comment on column 表名.字段2 is 备注的中文字段2;

 

posted on 2019-11-27 15:08  大景少  阅读(136)  评论(0编辑  收藏  举报