给表中增加一列或者修改列类型,大小脚本
修改表中的某列:
alter table tablename modify 字段 VARCHAR2(128);
增加一列:
alter table tablename add 字段 VARCHAR2(128);
-- Add comments to the columns
comment on column table.字段
is '中文注释;
发布时间: 2012-07-03 13:37:43 作者: rapoo
给表中增加一列或者修改列类型,大小脚本
修改表中的某列:
alter table tablename modify 字段 VARCHAR2(128);
增加一列:
alter table tablename add 字段 VARCHAR2(128);
-- Add comments to the columns
comment on column table.字段
is '中文注释;