DROPing a database is similar to the DROP TABLE command : Drop Database « Database « MySQL Tutorial






Syntax:

DROP DATABASE <database>
SHOW DATABASES;
CREATE DATABASE myDatabase;
SHOW DATABASES;
drop database myDatabase;
SHOW DATABASES;








3.2.Drop Database
3.2.1.DROPing a database is similar to the DROP TABLE command