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