🏠ReferenceSQLDDL CommandsTableDROP TABLEOn this pageDROP TABLEDeletes the table.SyntaxDROP TABLE [IF EXISTS] [db.]nameExamplesmysql> CREATE TABLE test(a UInt64, b Varchar) Engine = Memory;mysql> DROP TABLE test;