Answers for "how to change table name in oracle sql"

SQL
3

RENAME table pl sql

ALTER TABLE old_table_name
  RENAME TO new_table_name;
Posted by: Guest on March-12-2020

Code answers related to "how to change table name in oracle sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language