How to rename a table column in Oracle 10g

2019-01-31 10:47发布

I would like to know: How to rename a table column in Oracle 10g?

5条回答
做个烂人
2楼-- · 2019-01-31 10:49
SQL> create table a(id number);

Table created.

SQL> alter table a rename column id to new_id;

Table altered.

SQL> desc a
 Name                                      Null?    Type
 ----------------------------------------- -------- -----------
 NEW_ID                                             NUMBER
查看更多
▲ chillily
3楼-- · 2019-01-31 11:01

alter table table_name rename column old_column_name/field_name to new_column_name/field_name;

ex: alter table student column name to username;

查看更多
The star\"
4楼-- · 2019-01-31 11:03

The syntax of the query is as follows:

Alter table <table name> rename column <column name> to <new column name>;

Example:

Alter table employee rename column eName to empName;

To rename a column name without space to a column name with space:

Alter table employee rename column empName to "Emp Name";

To rename a column with space to a column name without space:

Alter table employee rename column "emp name" to empName;
查看更多
狗以群分
5楼-- · 2019-01-31 11:04
alter table table_name rename column oldColumn to newColumn;
查看更多
爱情/是我丢掉的垃圾
6楼-- · 2019-01-31 11:04

suppose supply_master is a table, and

SQL>desc supply_master;


SQL>Name
 SUPPLIER_NO    
 SUPPLIER_NAME
 ADDRESS1       
 ADDRESS2       
 CITY           
 STATE          
 PINCODE  


SQL>alter table Supply_master rename column ADDRESS1 TO ADDR;
Table altered



SQL> desc Supply_master;
 Name                   
 -----------------------
 SUPPLIER_NO            
 SUPPLIER_NAME          
 ADDR   ///////////this has been renamed........//////////////                
 ADDRESS2               
 CITY                   
 STATE                  
 PINCODE                  
查看更多
登录 后发表回答