SQL DROP Statement

DROP TABLE statement is used to DELETE table, its constraints and all of its data from the database.

DROP TABLE EMPLOYEE;
The above statement will delete the EMPLOYEE table with all the data from the database.

Previous: SQL ALTER Statement

<