DROP

Synopsis

DROP TABLE
    [ IF EXISTS ]
    tablename

Examples

DROP TABLE foobars;
DROP TABLE IF EXISTS foobars;

Description

Deletes a table and all its items.

Warning

This action cannot be undone! Treat the same way you treat rm -rf

Parameters

IF EXISTS
If present, do not raise an exception if the table does not exist.
tablename
The name of the table