create table tablename
(
f1 NUMBER(10,4) defalut 0 not null,//字段
f2 NUMBER(10) null ,
f3 NUMBER(3) defalut 0,
pt number(3) not null ,
constraint PK_tablename primary key (f1) //主键
using index
tablespace ts_name //表空间
storage //存储
(
initial 1m //初始大小
next 1m //下一个大小
pctincrease 0 //增量
)
)
为基表增加新列命令如下:
ALTER TABLE 表名 ADD (列说明列表)
例:为test表增加一列Age,用来存放年龄
IXDBA.NET技术社区
sql>alter table test
add (Age number(3));
修改基表列定义命令如下:
ALTER TABLE 表名
MODIFY (列名 数据类型)
例:将test表中的Count列宽度加长为10个字符
sql>alter atble test
modify (County char(10));
b、将一张表删除语句的格式如下:
DORP TABLE 表名;