forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
4.3 KiB
4.3 KiB
RENAME TABLE
Function
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} [, ...]; |
Parameter Description
- 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
Rename a table:
1 | RENAME TABLE customer_address TO new_customer_address; |
Helpful Links
Parent topic: DDL Syntax