MENU
DROP TABLE
DROP [TEMPORARY] TABLE [IF EXISTS] tbl_name [, tbl_name] ... [RESTRICT | CASCADE] |
This removes one or more tables. |
IF EXISTS prevents an error for non-existent tables. |
RESTRICT and CASCADE are not supported in MySQL 5.7. |
TEMPORARY drops only TEMPORARY tables, does not end an ongoing transaction, and does not check access rights. |