DROP TABLE

DROP TABLE 语句用于从当前所选的数据库中删除表。如果表不存在则会报错,除非使用 IF EXISTS 修饰符。

语法图

DropTableStmt
DROPOptTemporaryTableOrTablesIfExistsTableNameListRestrictOrCascadeOpt
TableOrTables
TABLETABLES
TableNameList
TableName,

示例

CREATE TABLE t1 (a INT);
Query OK, 0 rows affected (0.11 sec)
DROP TABLE t1;
Query OK, 0 rows affected (0.22 sec)
DROP TABLE table_not_exists;
ERROR 1051 (42S02): Unknown table 'test.table_not_exists'
DROP TABLE IF EXISTS table_not_exists;
Query OK, 0 rows affected (0.01 sec)
CREATE VIEW v1 AS SELECT 1;
Query OK, 0 rows affected (0.10 sec)
DROP TABLE v1;
Query OK, 0 rows affected (0.23 sec)

MySQL 兼容性

  • 在尝试删除不存在的表时,使用 IF EXISTS 删除表不会返回警告。Issue #7867
  • 目前 RESTRICTCASCADE 仅在语法上支持。

另请参阅

文档内容是否有帮助?

下载 PDF文档反馈社区交流
产品
TiDB
TiDB Cloud
© 2024 PingCAP. All Rights Reserved.
Privacy Policy.