docs/en/sql-reference/sql-statements/Database/DROP_DATABASE.md
DROP DATABASE is used to delete a database in StarRocks.
NOTE
This operation requires the DROP privilege on the destination database.
DROP DATABASE [IF EXISTS] <db_name> [FORCE]
Take note of the following points:
DROP DATABASE FORCE to drop a database, the database is deleted directly without any checks on whether there are unfinished activities in it and cannot be recovered. Generally, this operation is not recommended.Drop database db_text.
DROP DATABASE db_test;