DROP TABLE

Description

Deletes the table.

Syntax

  1. > DROP TABLE [IF EXISTS] [db.]name

Examples

  1. CREATE TABLE table01(a int);
  2. mysql> DROP TABLE table01;
  3. Query OK, 0 rows affected (0.01 sec)