📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

DROP INVERTED INDEX



Removes an inverted index in TiDB Cloud Lake.

Syntax

DROP INVERTED INDEX [IF EXISTS] <index> ON [<database>.]<table>

Examples

-- Drop the inverted index 'customer_feedback_idx' on the 'customer_feedback' table DROP INVERTED INDEX customer_feedback_idx ON customer_feedback;

Was this page helpful?