Files
doc-exports/docs/dws/dev/dws_06_0276.html
luhuayi 177cd61a57 DWS DEVG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-05-05 07:44:03 +00:00

4.4 KiB

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

Rename a table:

1
RENAME TABLE customer_address TO new_customer_address;

Helpful Links

CREATE TABLE, ALTER TABLE, and DROP TABLE