SQLite Tutorial SQLite Advanced SQLite Database SQLite References

SQLite DROP INDEX Keyword



The SQLite DROP INDEX keyword is used to delete a index on a table. Indexes are useful to retrieve data from the database more quickly and speeds up the search queries. Indexes are not visible to the end users. Along with this, updating a table with indexes takes more time as compared to a table without any indexes because indexes are updated. Therefore it is advised to create indexes only on frequently searched columns.

The INSERT and UPDATE statements take more time on tables having indexes, whereas the SELECT statements become fast on those tables. The reason is that while performing insert or update operation, the database update the indexes as well.

SQLite DROP INDEX

The SQLite DROP INDEX statement is used to delete a index on a table.

Syntax

The syntax for using SQLite DROP INDEX statement in SQLite is given below:

DROP INDEX [IF EXISTS] index_name;

The IF EXISTS is an optional parameter that conditionally drops index only if it exists on the database. If an index is deleted which does not exist, it will raise an error.

SQLite DROP INDEX Example

Consider a table called Employee which contains an index named idx_name. To drop this index, the following statement can be used:

DROP INDEX idx_name;

❮ SQLite Keywords