DROP INDEXSection: SQL Commands (7)Updated: 2003-11-02 |
DROP INDEXSection: SQL Commands (7)Updated: 2003-11-02 |
DROP INDEX name [, ...] [ CASCADE | RESTRICT ]
DROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index.
This command will remove the index title_idx:
DROP INDEX title_idx;
DROP INDEX is a PostgreSQL language extension. There are no provisions for indexes in the SQL standard.