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