Definition: The drop database command is used when you no longer need one of the SQL databases on your server. It will remove it permanently. It is phrased as: drop database [DatabaseName];
Examples:
This will remove the database 'Dresses' from the MySQL server:
drop database Dresses;

