如何在Oracle 10g中重命名表列


Answers:


117
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

3
必须COLUMN在列名之前使用关键字。
Chacko Mathew 2014年

如果表具有许多行,重命名列名是否不会丢失数据?我想删除有关列名的约束,然后重命名列名。该表有1000多行。 样本ALTER TABLE A01.PROYECTOS DROP CONSTRAINT“ CHK_TIPO_PROYECTO” ,然后 更改表A01.PROYECTOS重命名列TIPO_PROYECTO到TIPOAPP
Kiquenet 2014年

35

查询的语法如下:

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

例:

Alter table employee rename column eName to empName;

要将没有空格的列名重命名为带有空格的列名:

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

要将带有空格的列重命名为没有空格的列名称:

Alter table employee rename column "emp name" to empName;

感谢您的答复和时间。
2015年

20
alter table table_name rename column oldColumn to newColumn;

我需要从'Employee Name'重命名为'Employee_name'的任何想法。(现有列名带有空格)
Kalpana

请使用:将表员工重命名列“ Employee Name”更改为Employee_name;请参阅我的答案以获取有关同一内容的更多说明。
Praveen Vinny 2015年

2

假设supply_master是一个表,并且

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                  

谢谢您的回答和时间
阿文德Lairenjam

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.