oracle中为一张表添加一个字段 --添加字段: alter table tablename add fieldname VARCHAR2(20); --添加备注: comment on column tablename.fieldname is '备注信息';