TechnoLearnAcademy

TECHNOLEARN

SQL DROP TABLE Statement

The DROP TABLE Statement is used to drop an existing table in a database.

Syntax:      

                   DROP TABLE table_name; 

Example:

   Objective: In this example, we will drop the table Emp from the database. 
                     DROP TABLE Tbl_Emp;
Scroll to Top