Rename a column in Oracle
Renaming a column in Oracle is done by using the construct below
ALTER TABLE <Table name>
RENAME COLUMN <old column name> TO <new column name>
Note: Text within <> indicate the parameters that need to be replaced.
ALTER TABLE <Table name>
RENAME COLUMN <old column name> TO <new column name>
Note: Text within <> indicate the parameters that need to be replaced.
Comments