1、加字段:
alter table 表名 ADD 字段名 类型;
eg:
alter table sys_cwzd ADD SCCLLJ VARCHAR2(50);
2、加备注:
comment on column 表名.字段名 is ‘备注名‘;
eg:
comment on column sys_cwzd.SCCLLJ is ‘上传材料路径‘;
原文地址:https://www.cnblogs.com/Cuimc/p/11412191.html
时间: 2024-10-19 09:01:23