Below is the query in MySQL to drop the database by checking if exists before:
DROP DATABASE IF EXISTS YourDbName;
Replace YourDbName with your own db name in the above query.
Below is the query in MySQL to drop the database by checking if exists before:
DROP DATABASE IF EXISTS YourDbName;
Replace YourDbName with your own db name in the above query.