ORACLE 字段名修改

来源:互联网 发布:基本的医学常识知乎 编辑:程序博客网 时间:2024/04/30 12:06

使用rename 关键字

 

 create table TEST
(
  id  INTEGER,
  con VARCHAR2(222)
);

 

alter table test renamecolumn id to auto_id;

原创粉丝点击