oracle数据库字段类型修改
ALTER TABLE 表名 MODIFY 字段 NULL; 字段由不能为空可改为空。
-- Add/modify columns
alter table 表名 add 字段 varchar2(4);
-- Add comments to the columns
comment on column 表名.字段
is '注释';
alter table 表名 add 字段 varchar2(4);
-- Add comments to the columns
comment on column 表名.字段
is '注释';

浙公网安备 33010602011771号