oracle中怎么更改表中字段名

 我来答
我卖烧饼不卖馍
2018-03-30 · TA获得超过8750个赞
知道小有建树答主
回答量:36
采纳率:96%
帮助的人:3.7万
展开全部

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

  • 修改字段名:alter table 表名 rename column 现列名 to 新列名;

  • 修改表名:alter table 表名 rename to 新表名

  • 增加字段语法: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;

qt765765
推荐于2017-11-23 · TA获得超过1269个赞
知道小有建树答主
回答量:754
采纳率:85%
帮助的人:226万
展开全部
使用RENAME关键字

修改字段名:alter table 表名 rename column 原字段名 to 新字段名

另,修改表名:alter table 表名 rename to 新表名
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sky496967173
2016-12-23 · TA获得超过2.7万个赞
知道大有可为答主
回答量:4060
采纳率:80%
帮助的人:609万
展开全部
直接在PL/SQL Developer中修改就可以了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式