The SQL DROP DATABASE Statement
The DROP DATABASE statement is used to drop an existing SQL database.
Syntax
DROP DATABASE databasename;
CREATE DATABASE Example
The following SQL statement drops the existing database "newDB":
The DROP DATABASE statement is used to drop an existing SQL database.
DROP DATABASE databasename;
The following SQL statement drops the existing database "newDB":