(Oracle入门篇2)Oracle新增表字段,修改表字段,删除表字段

  • Post author:
  • Post category:其他


1、新增表字段(设置字段默认值且不能为空增加字段注释)

alter table 表名 add  字段名 数据类型 default 默认值 not null;

comment on column 表名.字段名 is ‘注释’;

2、修改表字段

(1)字段改名

alter table 表名 rename column 要修改的字段名 to 新字段名;

(2)修改字段类型和默认值以及字段可以为空

alter table 表名 MODIFY 字段名  字段类型 default ‘默认值’ null ;

3、删除表字段

alter table 表名 drop column 字段名;



版权声明:本文为Sunlit_1101原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。