In this tutorial, we will learn how to DROP TABLE using SQL.
SQL DROP TABLE Statement
SQL DROP TABLE statement is used to drop or delete an existing table with all the data from a database.
Syntax - DROP TABLE
DROP TABLE tableName;
Note:- When you use this DROP TABLE statement, be careful because deleting a table will result in loss of complete data information stored in the table.