DROP RESULT TABLE

Drops the specified result table.

A result table is used only to read query results in parallel. To drop any table besides a result table, use the DROP TABLE command.

Syntax

DROP RESULT TABLE <result_table_name>;

Remarks

  • This command can be run on the master aggregator node, or a child aggregator node (see Node Requirements for SingleStore Commands ).

  • This command does not wait for any running queries against the result table to finish before dropping the table. This is because it is assumed that each reader that is reading the result table has completed its read before DROP RESULT TABLE is run. For more information, see Read Query Results in Parallel.

Example

DROP RESULT TABLE my_result_tbl;

Last modified: November 29, 2022

Was this article helpful?