/usr/man2/cat.l/drop_index.l.Z(/usr/man2/cat.l/drop_index.l.Z)
NAME
DROP INDEX - remove an index
SYNOPSIS
DROP INDEX name [, ...] [ CASCADE | RESTRICT ]
DESCRIPTION
DROP INDEX drops an existing index from the database system. To execute
this command you must be the owner of the index.
PARAMETERS
name The name (optionally schema-qualified) of an index to remove.
CASCADE
Automatically drop objects that depend on the index.
RESTRICT
Refuse to drop the index if any objects depend on it. This is
the default.
EXAMPLES
This command will remove the index title_idx:
DROP INDEX title_idx;
COMPATIBILITY
DROP INDEX is a PostgreSQL language extension. There are no provisions
for indexes in the SQL standard.
SEE ALSO
CREATE INDEX [create_index(l)]
SQL - Language Statements 2005-11-05 DROP INDEX()
Man(1) output converted with
man2html