TechnoLearnAcademy

TECHNOLEARN

SQL DROP DATABASE

The SQL DROP DATABASE Statement is used to drop the existing database.

Syntax:      

               DROP DATABASE databaseName; 

Example:

   Objective: In this example, we will create a new database called DBTechno. 
                DROP DATABASE DBTechno;
Scroll to Top