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

DROP NGRAM INDEX



Drops an existing NGRAM index from a table.

Syntax

DROP NGRAM INDEX [IF EXISTS] <index_name> ON [<database>.]<table_name>;

Examples

The following example drops the idx1 index from the amazon_reviews_ngram table:

DROP NGRAM INDEX idx1 ON amazon_reviews_ngram;

Was this page helpful?