Oracle Rename Table
The Oracle Rename Table command is used to change the name of tables.
Oracle Rename Table syntax
alter table table_name rename to new_table_name;
Oracle Rename Table example
alter table customers rename to clients;
The Oracle Rename Table command is used to change the name of tables.
alter table table_name rename to new_table_name;
alter table customers rename to clients;