Description

The SQL keyword DROP DATABASE is used to delete an existing database, which deletes the database and its contents permanently from a database system.

The below SQL deletes an existing database.

DROP DATABASE test_db;

Related Links