Drop database --drop database statement
Use the "drop database" statement to drop the database.
Be aware that dropping the database will also drop all the tables it contains.
drop database database name;
This is a sample to delete the database.
drop database mydatabase;