;

SQL DROP TABLE


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;

Example of DROP TABLE Statement

Example - DROP TABLE
DROP TABLE tbl_Test;