Watch the 7.3 Webinar On-Demand
This new release brings updates to Universal Storage, query
optimization, and usability that you won’t want to miss.
Drop the specified database.
DROP DATABASE [IF EXISTS] <database_name> [FORCE]
DROP SCHEMA [IF EXISTS] <database_name> [FORCE]
<database_name>
is the name of a SingleStore DB database.DROP DATABASE
command waits for the running queries to finish before dropping the database. To override this behavior and kill any running queries, use the FORCE
option.DROP DATABASE IF EXISTS test;
DROP DATABASE IF EXISTS db FORCE;