SyntaxFix
Write A Post
Hire A Developer
Questions
In order to rename a table in a different schema, try:
ALTER TABLE owner.mytable RENAME TO othertable;
The rename command (as in "rename mytable to othertable") only supports renaming a table in the same schema.
rename mytable to othertable