DROP TABLE
DROP TABLE
DROP TABLE 语句用于从当前所选的数据库中删除表。如果表不存在则会报错,除非使用 IF EXISTS 修饰符。
按照设计,DROP TABLE 也会删除视图,因为视图与表共享相同的命名空间。
语法图
DropTableStmt:

TableOrTables:

TableNameList:

示例
{{< copyable "sql" >}}
CREATE TABLE t1 (a INT);Query OK, 0 rows affected (0.11 sec){{< copyable "sql" >}}
DROP TABLE t1;Query OK, 0 rows affected (0.22 sec){{< copyable "sql" >}}
DROP TABLE table_not_exists;ERROR 1051 (42S02): Unknown table 'test.table_not_exists'{{< copyable "sql" >}}
DROP TABLE IF EXISTS table_not_exists;Query OK, 0 rows affected (0.01 sec){{< copyable "sql" >}}
CREATE VIEW v1 AS SELECT 1;Query OK, 0 rows affected (0.10 sec){{< copyable "sql" >}}
DROP TABLE v1;Query OK, 0 rows affected (0.23 sec)MySQL 兼容性
- 在尝试删除不存在的表时,使用
IF EXISTS删除表不会返回警告。Issue #7867