Search code examples
oracletable-rename

Rename Oracle Table or View


What is the syntax to rename a table or view in Oracle?


Solution

  • ALTER TABLE mytable RENAME TO othertable
    

    In Oracle 10g also:

    RENAME mytable TO othertable