ReferenceSQLDDL CommandsTableDROP TABLE本页总览DROP TABLEDeletes the table.SyntaxDROP TABLE [IF EXISTS] [db.]nameExamplesCREATE TABLE test(a INT, b VARCHAR) Engine = Memory;DROP TABLE test;