Supported Versions: Current (16) / 15 / 14 / 13 / 12
Development Versions: devel
Unsupported versions: 11 / 10 / 9.6 / 9.5 / 9.4 / 9.3 / 9.2 / 9.1 / 9.0 / 8.4 / 8.3 / 8.2 / 8.1 / 8.0 / 7.4 / 7.3 / 7.2 / 7.1
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the current version, or one of the other supported versions listed above instead.

DROP INDEX

Name

DROP INDEX  --  Removes existing indexes from a database

Synopsis

DROP INDEX index_name [, ...]
  

Inputs

index_name

The name of an index to remove.

Outputs

DROP

The message returned if the command completes successfully.

ERROR: index "index_name" does not exist

This message occurs if index_name is not an index in the database.

Description

DROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index.

Notes

DROP INDEX is a Postgres language extension.

Refer to CREATE INDEX for information on how to create indexes.

Usage

This command will remove the title_idx index:

    DROP INDEX title_idx;
   

Compatibility

SQL92

SQL92 defines commands by which to access a generic relational database. Indexes are an implementation-dependent feature and hence there are no index-specific commands or definitions in the SQL92 language.