Skip to main content

DROP TABLE

Remove a table and all of its data.

Syntax

Parameters

ParameterDescription
IF EXISTSDo not raise an error if the table does not exist
table_nameName of the table to remove

Examples

DROP TABLE IF EXISTS articles;

See also