首页 >数据库 >Oracle > 正文

oracle如何修改表字段名

原创2020-06-08 14:02:1201932

oracle修改表字段名的方法是:

首先bai方法是使用RENAME关键字:

修改字段名:

alter table 表名 rename column 现列zhi名 to 新列名;

修改表名:

alter table 表名 rename to 新表dao名

增加字段语法:

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如何修改表字段名的详细内容,更多请关注php中文网其它相关文章!

php中文网最新课程二维码

声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理

  • 相关标签:oracle
  • 相关文章

    相关视频


    网友评论

    文明上网理性发言,请遵守 新闻评论服务协议

    我要评论
  • 专题推荐

    推荐视频教程
  • oracle知识库oracle知识库
  • 肖文吉Oracle视频教程肖文吉Oracle视频教程
  • 魔乐科技oracle视频教程魔乐科技oracle视频教程
  • 尚观Oracle入门到精通视频教程尚观Oracle入门到精通视频教程
  • 视频教程分类