Deleting tables
With
DROP TABLE
an existing table can be deleted. The data and structure of the table are deleted.
The command has the following syntax:
DROP TABLE <Table name>;
Attention:
With
DROP TABLE
the table structure is deleted with all the data. In most cases, this cannot be undone!