Drop Database


In SQL, DROP DATABASE Statement is used to drop an existing table in a database.

Syntax :- 

DROP DATABASE DBName;

Example : Let's  take an  example to drop a database name "students".


Output :-

 Query :

DROP DATABASE students;

Now you can check that your database is removed by executing the following query.

Output :-