002 Oracle Table

创建表

a: Sql语句创建

-- Create table
create table Table_Name
(
字段1 VARCHAR2(50),
字段2  VARCHAR2(50) not null

... ...
)
tablespace Data_Base
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);

b:可视化创建

在PLSQLDev中直接创建表

猜你喜欢

转载自www.cnblogs.com/jeremywucnblog/p/10217868.html