Reference and syntax for the DROP INDEX command.
-- Drop a regular index DROP INDEX [IF EXISTS] <index_name> -- Drop an aggregating index DROP AGGREGATING INDEX [IF EXISTS] <index_name>
<index_name>
DROP INDEX my_index;
DROP AGGREGATING INDEX my_agg_index;
Was this page helpful?