RENAME TABLE

RENAME TABLE 语句用于对已有表进行重命名。

语法图

RenameTableStmt:

RenameTableStmt

TableToTable:

TableToTable

示例

mysql> CREATE TABLE t1 (a int); Query OK, 0 rows affected (0.12 sec) mysql> SHOW TABLES; +----------------+ | Tables_in_test | +----------------+ | t1 | +----------------+ 1 row in set (0.00 sec) mysql> RENAME TABLE t1 TO t2; Query OK, 0 rows affected (0.08 sec) mysql> SHOW TABLES; +----------------+ | Tables_in_test | +----------------+ | t2 | +----------------+ 1 row in set (0.00 sec)

MySQL 兼容性

RENAME TABLE 语句与 MySQL 完全兼容。如发现任何兼容性差异,请在 GitHub 上提交 issue

另请参阅

下载 PDF
产品
TiDB
TiDB Cloud
© 2024 PingCAP. All Rights Reserved.
Privacy Policy.