Drop Database in MySQL


We can drop an existing database in MySQL by using the DROP DATABASE statement with the below syntax

Syntax:

DROP DATABASE DATABASE_NAME;

Example:

DROP DATABASE Employee;