SQL As Understood By SQLite

DROP INDEX

drop-index-stmt:

syntax diagram drop-index-stmt

The DROP INDEX statement removes an index added with the CREATE INDEX statement. The index named is completely removed from the disk. The only way to recover the index is to reenter the appropriate CREATE INDEX command.

The DROP INDEX statement does not reduce the size of the database file in the default mode. Empty space in the database is retained for later INSERT statements. To remove free space in the database, use the VACUUM command. If auto_vacuum mode is enabled for a database then space will be freed automatically by DROP INDEX.