oracle数据库的一个表中,怎么设置字段的默认值如果表已经存在,用如下方法设置默认值。1alter table 表名 modify 字段名 default 默认值;如test表中设置age字段为30,可用如下语句:1alter table test modify age default 30;