Oracle修改字段名、字段数据类型

 

语句:
alter table tableName rename column oldCName to newCName; -- 修改字段名
alter table tableName modify (cloumnName 数据类型); -- 修改数据类型

例如:
tableName rename column oldCName to newCName; -- 修改字段名
alter table tableName modify (cloumnName 数据类型); -- 修改数据类型

例如:
1、创建表:   CREATE TABLE Student(     id varchar2(32) primary key,     name varchar2(8) not null,     age number   ); 2、修改字段名:   alter table Student rename name to StuName; 3、修改数据类型:   alter table Student modify (id varchar2(64));

4. 添加注释

comment on table Student is ‘学生’;
 
comment on column Student.name is ‘学生名称’;

 

 

    原文作者:潇湘雨815
    原文地址: https://blog.csdn.net/u011979130/article/details/81381671
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞