# DROP DATABASE ##Description This statement is used to delete the database Grammar: DROP DATABASE [IF EXISTS] db_name; Explain: After executing DROP DATABASE for a period of time, the deleted database can be restored through the RECOVER statement. See RECOVER statement for details ## example 1. Delete database db_test DROP DATABASE db_test; ## keyword DROP,DATABASE