I would like to know: How to rename a table column in Oracle 10g?
Asked
Active
Viewed 1.8e+01k times
5 Answers
122
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

DazzaL
- 21,638
- 3
- 49
- 57
-
3had to use `COLUMN` keyword before the column name. – Chacko Oct 09 '14 at 12:52
37
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;

Praveen Vinny
- 2,372
- 6
- 32
- 40
20
alter table table_name rename column oldColumn to newColumn;

Lalit Kumar B
- 47,486
- 13
- 97
- 124

Srinivas B
- 1,821
- 4
- 17
- 35
2
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
0
alter table table_name
rename column old_column_name/field_name to new_column_name/field_name;
example: alter table student rename column name to username;

AwakaDev
- 3
- 3

Gudddu kumar
- 11