- create table testbase(
- id number(10) not null primary key,
- basename varchar2(20) not null,
- address varchar2(50) default null,
- basecode varchar2(30) default null,
- idNumber varchar(20) default null,
- remark varchar2(20)
- );
- create unique index base_index on testbase(basename);--为表创建一个唯一的索引
- create index code_index on testbase(basecode);--为basecode的索引
- create sequence seq_base start with 1;--创建一个开始和增值为1的序列
- --alter table testbase add constraint PK_testbase primary key (id);添加一个主键约束
- --这里就不添加表空间约束....后再学习加强