On this pageDROP TABLEDeletes the table.Syntax​DROP TABLE [IF EXISTS] [db.]nameCopyExamples​mysql> CREATE TABLE test(a UInt64, b Varchar) Engine = Memory;mysql> DROP TABLE test;Copy