To delete or drop an existing database we have to use DROP DATABASE statement.
Syntax:
DROP DATABASE databaseName;
Example:
DROP DATABASE w3schools_db;
Next Topic: SQL CREATE Table with example.
Previous Topic: SQL SELECT Database with example.