Description

The SQL keyword DROP TABLE is used to delete an existing table, which deletes the table and its contents permanently from a database.

The below SQL deletes an existing table with the name "customers".

DROP TABLE customers;

Related Links