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