RENAME TABLE
Function
RENAME TABLE renames a specified table.
Precautions
RENAME TABLE has the same function as the following command:
1
|
ALTER TABLE table_name RENAME to new_table_name |
Syntax
1 2 |
RENAME TABLE {[schema.]table_name TO new_table_name} [, ...]; |
Parameters
- schema
Specifies the schema name.
- table_name
Specifies the name of the table to be modified.
- new_table_name
Specifies the new table name.
Examples
For details, see Examples in CREATE TABLE.
Helpful Links
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.