DROP TABLE
Deletes the table.
Syntax
DROP TABLE [IF EXISTS] [db.]name
Examples
mysql> CREATE TABLE test(a UInt64, b Varchar) Engine = Memory;
mysql> DROP TABLE test;
Deletes the table.
DROP TABLE [IF EXISTS] [db.]name
mysql> CREATE TABLE test(a UInt64, b Varchar) Engine = Memory;
mysql> DROP TABLE test;