语句:
alter table tableName rename column oldCName to newCName; -- 修改字段名
举例说明:
比如我们现在创建一张表:
CREATE TABLE Student( id varchar2(32) primary key, name varchar2(8) not null, age number );
现在,我们要修改该表的字段名,该如何实现呢?
语句如下:
alter table Student rename name to StuName;
如果要修改字段的数据类型呢?
alter table Student modify (id varchar2(64));
推荐教程:oracle教程
以上是oracle修改字段名的语句怎么写的详细内容。更多信息请关注PHP中文网其他相关文章!