DROP TABLEDescriptionSyntaxdrop_table_statement:ExamplesDROP TABLEDescriptionDeletes the table. Syntax> DROP TABLE [IF EXISTS] [db.]namedrop_table_statement: Examples> CREATE TABLE table01(a int);> DROP TABLE table01;