oracle给字段添加描述时间:2021-09-21 06:28:06oracle中,我们有时候需要给表的字段添加描述。用以下语句即可。 alter table a add b varchar2(2); comment on column a.b is '这是表a的字段b的描述';