Answers for "how to change the name of a column in oracle"

SQL
3

rename column ORACLE

alter table sales rename column order_date to date_of_order;
Posted by: Guest on May-28-2020
1

PL SQL MODIFY COLUMN NME

ALTER TABLE table_name
  RENAME COLUMN old_name TO new_name;
Posted by: Guest on March-12-2020

Code answers related to "how to change the name of a column in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language