MySQL DROP Database

Syntax :

DROP DATABASE database_name;

 Use DROP DATABASE statement to delete the database

Example 1 :

The following statement delete the database called "testingDB"

 

 DROP DATABASE testingDB;