SQL CommandsDDL CommandsTableDROP TABLEOn this pageDROP TABLEDeletes the table.See also:CREATE TABLEUNDROP TABLETRUNCATE TABLESyntaxDROP TABLE [IF EXISTS] [db.]namecautionDROP TABLE only remove the table schema from meta service, we do not remove the underlying data from the storage.ExamplesCREATE TABLE test(a INT, b VARCHAR);DROP TABLE test;