我是靠谱客的博主 飘逸黑米,这篇文章主要介绍Oracle数据库表操作:字段的增加、删除、修改和重命名,现在分享给大家,希望可以做个参考。

【增加字段】:alter table tablename add (column datatype [default value][null/not null],….);

说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);

   例:alter table sf_users add (HeadPIC blob);

   例:alter table sf_users add (userName varchar2(30) default '空' not null);

 

【修改字段】:alter table tablename modify (column datatype [default value][null/not null],….); 

说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);

   例:alter table sf_InvoiceApply modify (BILLCODE number(4));

 

【删除字段】:alter table tablename drop (column);

说明:alter table 表名 drop column 字段名;

   例:alter table sf_users drop column HeadPIC;

 

【字段重命名】:

说明:alter table 表名 rename  column  列名 to 新列名   (其中:column是关键字)

   例:alter table sf_InvoiceApply rename column PIC to NEWPIC;

 

【表名重命名】:

说明:alter table 表名 rename to  新表名

   例:alter table sf_InvoiceApply rename to  sf_New_InvoiceApply

最后

以上就是飘逸黑米最近收集整理的关于Oracle数据库表操作:字段的增加、删除、修改和重命名的全部内容,更多相关Oracle数据库表操作:字段内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(124)

评论列表共有 0 条评论

立即
投稿
返回
顶部