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 table.
DROP TABLE [IF EXISTS] <table_name> [FORCE];
<table_name>
is the name of a table in a SingleStore DB database.DROP TABLE
command waits for the running queries to finish before dropping the table. To override this behavior and kill any running queries, use the FORCE
option.DROP TABLE
command is run. For information on when/how much table memory is freed when this command is run, see Memory Management.DROP TABLE IF EXISTS mytbl;
DROP TABLE IF EXISTS tab1 FORCE;