🏠ReferenceSQLDDL CommandsTableDROP TABLEOn this pageDROP TABLEDeletes the table.SyntaxDROP TABLE [IF EXISTS] [db.]nameExamplesCREATE TABLE test(a INT, b VARCHAR) Engine = Memory;DROP TABLE test;