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