The english documents is translated by machine. So It may has some mistake. We will fix them later
377 B
377 B
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
'35;'35; example
- Delete database db_test DROP DATABASE db_test;
keyword
DROP,DATABASE