oracle 给表添加字段
alter table 表明 add 字段名 字段类型 default 默认值;
给字段加注释
comment on column 表明.字段名 is '注释内容';
删除字段
alter table 表明 drop (字段名);
版权声明:本文为WXN069原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。
oracle 给表添加字段
alter table 表明 add 字段名 字段类型 default 默认值;
给字段加注释
comment on column 表明.字段名 is '注释内容';
删除字段
alter table 表明 drop (字段名);