先把表里面的数据导出来备份。alter table T_USERRECHARGE add(PAYMENT varchar2(64))再把数据导进去就可以了。
使用comment on,举个例子:create table EMP( empid NUMBER); comment on table EMP is '员工信息'; --添加表描述 comment on column EMP.empid is '员工编号'; --添加列描述。