We can use DROP TABLE statement to drop/delete an existing table in a database. Deleting a table will remove complete information stored in the table. It is a DML (Data Manipulation Language) command.
Syntax:
DROP TABLE <table_name>;
Example:
DROP TABLE employees;